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 3
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "nrf-device-setup",
"version": "0.6.7",
"description": "Common USB/serialport/jlink device actions to check/program nRF devices",
"main": "dist/index.js",
"license": "BSD-3",
"author": "Nordic Semiconductor ASA",
"scripts": {
"test": "jest --no-cache --runInBand --verbose",
"rollup": "rollup -c rollup.config.js",
"lint": "eslint src/ bin/"
},
"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": [
"dist/",
"src/",
"bootloader/*.zip",
"bin/device-setup.js",
"bin/dfu-trigger.js",
"LICENSE",
"README.md"
],
"bin": {
"device-setup": "./bin/device-setup.js",
"dfu-trigger": "./bin/dfu-trigger.js"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"inquirer": "^6.4.1",
"nrf-device-lister": "^2.4.0",
"nrf-intel-hex": "^1.3.0",
"pc-nrf-dfu-js": "^0.2.11",
"protobufjs": "^6.8.8"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"pc-nrfconnect-build": "git+https://github.com/NordicPlayground/pc-nrfconnect-build.git#semver:^0.3.0",
"jest": "^24.8.0",
"rollup": "^1.16.6",
"rollup-plugin-async": "^1.2.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-eslint": "^7.0.0"
},
"jest": {
"testMatch": [
"**/test/main.test.js"
]
}
}