-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "noble-dfu",
"version": "1.0.0",
"description": "Update device firmware via Nordic's DFU protocols using noble",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib; babel src -d lib",
"example": "node examples/secure_dfu_node.js",
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:23/TimeularZei/noble-dfu.git"
},
"keywords": [
"noble",
"dfu",
"nordic",
"firmware",
"ble",
"bluetooth"
],
"author": "Piotrek Dubiel <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"crc-32": "^1.0.2",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"husky": "^0.14.3",
"jszip": "^3.1.3",
"lint-staged": "^4.2.3",
"noble": "git+https://gitlab2.polidea.com/TimeularZeiDependencies/noble#78263a5898aa4890acbe2726b1c3304419d34307",
"usb": "git+https://gitlab2.polidea.com/TimeularZeiDependencies/node-usb#5c436c8e9416ce75b18e02f8af665d4fa327da66",
"prettier": "^1.7.4",
"progress": "^2.0.0"
},
"lint-staged": {
"{src,examples}/**/*.js": [
"npm run build",
"prettier --write",
"git add ."
]
}
}