-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "balena-mdns-publisher",
"version": "1.27.189",
"scripts": {
"build": "tsc",
"prettify": "balena-lint --fix src/ typings/",
"lint": "balena-lint src/ typings/ && tsc --noEmit",
"start": "node build/app.js",
"test": "true",
"prepare": "node -e \"try { (await import('husky')).default() } catch (e) { if (e.code !== 'ERR_MODULE_NOT_FOUND') throw e }\" --input-type module"
},
"author": "Heds Simons <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/balena-io/balena-mdns-publisher.git"
},
"bugs": {
"url": "https://github.com/balena-io/balena-mdns-publisher/issues"
},
"nyc": {
"extension": [
".ts"
]
},
"private": true,
"dependencies": {
"balena-sdk": "^20.0.0",
"bluebird": "^3.7.2",
"dbus-native": "^0.4.0",
"lodash": "^4.17.21",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"@balena/lint": "^9.0.0",
"@types/lodash": "^4.17.4",
"@types/node": "^22.0.0",
"@types/request-promise": "4.1.51",
"husky": "^9.0.0",
"lint-staged": "^15.2.5",
"typescript": "^5.4.5"
},
"engines": {
"node": "^22.0.0",
"npm": "^10.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"*.ts": [
"balena-lint --fix"
]
},
"versionist": {
"publishedAt": "2024-12-05T01:20:45.080Z"
}
}