-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.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
{
"name": "nrf-dtm-js",
"version": "0.0.1",
"description": "JS implementation of the nRF DTM",
"esnext:main": "src/index.js",
"main": "dist/nrf-dtm.js",
"module": "src/index.js",
"browser": "dist/nrf-dfu.browser.js",
"author": "",
"license": "Propietary",
"scripts": {
"rollup": "npm run lint && rollup -c rollup.config.js",
"test": "rollup -c rollup.config.js && jest --detectOpenHandles --runInBand",
"lint-init": "nrfconnect-scripts lint-init",
"lint": "nrfconnect-scripts lint src"
},
"dependencies": {
"inquirer": "^6.2.0"
},
"peerDependencies": {
"serialport": "10.5.0"
},
"devDependencies": {
"debug": "^3.2.6",
"jest": "^23.6.0",
"pc-nrfconnect-devdep": "git+https://github.com/NordicSemiconductor/pc-nrfconnect-devdep.git#v3.1.0",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0"
},
"jest": {
"testMatch": [
"**/test/?(*.)+(test).js?(x)"
]
}
}