-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
{
"name": "balena-device-init",
"version": "8.0.1",
"description": "Configure and initialize devices using device specs",
"type": "commonjs",
"main": "build/init.js",
"homepage": "https://github.com/balena-io/balena-device-init",
"repository": {
"type": "git",
"url": "git://github.com/balena-io/balena-device-init.git"
},
"files": [
"build/",
"typings/"
],
"keywords": [
"balena",
"device",
"spec",
"initialize",
"configure"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc && npm run lint && npm run readme",
"test": "([ \"$GITHUB_WORKFLOW\" = 'Flowzone' ] && [ \"$GITHUB_JOB\" = 'npm_test' ] && echo \"Skipping 'npm test' in flowzone in favor of the custom test action!\") || (npm run build && npm run test:all)",
"test:all": "ts-mocha --project ./tsconfig.dev.json --paths tests/e2e.ts",
"test:ci": "tsc && npm run test:all",
"lint": "balena-lint -e ts src tests -t tsconfig.dev.json",
"lint-fix": "balena-lint -e ts src tests -t tsconfig.dev.json --fix",
"readme": "jsdoc2md --template doc/README.hbs build/init.js > README.md"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=20.6.0"
},
"devDependencies": {
"@balena/lint": "^9.0.1",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.10",
"@types/sinon": "^17.0.3",
"balena-sdk": "^12.27.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^4.0.0",
"etcher-sdk": "9.0.8",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^10.0.0",
"sinon": "^19.0.2",
"ts-mocha": "^10.0.0",
"typescript": "^5.7.2",
"wary": "^1.1.1"
},
"dependencies": {
"balena-image-fs": "^7.0.6",
"balena-semver": "^2.2.0",
"lodash": "^4.17.15",
"reconfix": "1.0.0-v0-1-0-fork-46760acff4d165f5238bfac5e464256ef1944476",
"resin-device-operations": "^2.0.0",
"rindle": "^1.3.4",
"string-to-stream": "^1.1.1"
},
"versionist": {
"publishedAt": "2024-12-19T13:41:14.244Z"
}
}