-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.99 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
72
73
74
75
76
77
{
"name": "balena-register-device",
"version": "9.0.4",
"description": "Balena device registration utilities",
"main": "build/register.js",
"homepage": "https://github.com/balena-io-modules/balena-register-device",
"repository": {
"type": "git",
"url": "git://github.com/balena-io-modules/balena-register-device.git"
},
"files": [
"build/"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=6.0.0"
},
"keywords": [
"resin",
"balena",
"device",
"register"
],
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc --project tsconfig.dist.json",
"lint": "balena-lint lib tests",
"lint-fix": "balena-lint --fix lib tests",
"test-node": "npx mocha -r ts-node/register --reporter spec tests/**/*.spec.ts",
"test-browser": "mockttp -c karma start",
"pretest": "npm run build",
"test": "npm run test-node && npm run test-browser",
"posttest": "npm run lint",
"prepare": "npm run build"
},
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@balena/lint": "^7.3.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"balena-auth": "^6.0.1",
"balena-config-karma": "4.0.0",
"balena-request": "^14.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^5.7.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"karma": "^5.0.9",
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"mockttp": "^3.8.0",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"url": "^0.11.0",
"util": "^0.12.4"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"tslib": "^2.2.0",
"typed-error": "^3.2.1",
"uuid": "^9.0.0"
},
"peerDependencies": {
"balena-request": "^13.3.1 || ^14.0.0"
},
"versionist": {
"publishedAt": "2024-12-05T18:58:16.258Z"
}
}