-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.18 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
{
"name": "hardware-tagging",
"version": "0.0.1",
"description": "tag devices with relevant hardware characteristics",
"main": "index.js",
"engines": {
"node": ">=0.12"
},
"scripts": {
"start": "node ./build/index.js",
"test": "npm run clean && npm run build && npm run start",
"lint": "resin-lint --typescript --fix src/ test/ && tsc --noEmit",
"prettify": "balena-lint -e ts -e js --typescript --fix src/ test/ typings/",
"clean": "rm -rf build",
"build": "tsc --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balena-io-playground/hardware-tagging.git"
},
"author": "Matthew McGinn <mamcgi@gmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/balena-io-playground/hardware-tagging/issues"
},
"homepage": "https://github.com/balena-io-playground/hardware-tagging#readme",
"devDependencies": {
"@balena/lint": "^5.0.2",
"copyfiles": "^2.2.0",
"lint-staged": "^10.1.4",
"prettier": "^2.0.4",
"resin-lint": "^3.3.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"balena-sdk": "^12.30.0",
"lodash": "^4.17.15"
}
}