This repository has been archived by the owner on Jan 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
74 lines (74 loc) · 2.14 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
{
"name": "pc-nrfjprog-js",
"version": "1.7.4",
"description": "Javascript bindings for nrfjprog",
"main": "index.js",
"nrfjprog": {
"version": "10.11.1",
"jlink": "V686f"
},
"scripts": {
"build": "node build.js",
"tidy": "node build.js --target tidy",
"lint": "jshint api/ test/ && jscs api/ test/",
"clean-prebuilt": "node-pre-gyp clean",
"package-prebuilt": "node-pre-gyp package",
"publish-prebuilt": "node-pre-gyp-github publish",
"install": "node scripts/pre-install.js && ( (which nrfconnect-build && nrfconnect-build fetch-draft) || node-pre-gyp install --fallback-to-build=false || node build.js )",
"docs": "jsdoc doc -t node_modules/minami -R README.md -d docs",
"deploy-docs": "gh-pages -d docs",
"test": "jest --runInBand --verbose --testResultsProcessor jest-bamboo-formatter -- index.test.js",
"test-watch": "jest --watch --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfjprog-js.git"
},
"bin": {
"get-jlink": "./scripts/get-jlink.js"
},
"binary": {
"module_name": "pc-nrfjprog-js",
"module_path": "./build/Release",
"host": "https://github.com/NordicSemiconductor/pc-nrfjprog-js/releases/download/",
"remote_path": "v{version}"
},
"files": [
"cmake",
"src",
"scripts",
"build.js",
"CMakeLists.txt",
"index.js"
],
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"axios": "^0.19.0",
"bindings": "^1.5.0",
"chalk": "^2.4.2",
"cmake-js": "^5.3.0",
"commander": "^2.20.0",
"nan": "^2.14.0",
"node-pre-gyp": "^0.13.0",
"regedit": "^3.0.2",
"sander": "^0.6.0",
"semver": "^6.2.0",
"sudo-prompt": "^9.0.0",
"tar": "^4.4.10"
},
"devDependencies": {
"gh-pages": "^2.0.1",
"jest": "^24.8.0",
"jest-bamboo-formatter": "1.0.1",
"jsdoc": "^3.6.2",
"minami": "^1.2.3",
"node-pre-gyp-github": "1.4.3",
"pc-nrfconnect-build": "github:NordicPlayground/pc-nrfconnect-build#semver:^0.3.0"
},
"jest": {
"testMatch": [
"**/test/?(*.)+(test).js?(x)"
]
}
}