forked from NordicSemiconductor/pc-ble-driver-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.44 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
78
79
80
81
82
{
"name": "pc-ble-driver-js",
"version": "2.5.1",
"description": "Javascript bindings for pc-ble-driver",
"main": "index.js",
"scripts": {
"lint": "jshint api/ test/ && jscs api/ test/",
"deploy-docs": "gh-pages -d docs",
"clean-prebuilt": "node-pre-gyp clean",
"package-prebuilt": "node-pre-gyp package",
"publish-prebuilt": "node-pre-gyp-github publish",
"publish-all-prebuilt": "node scripts/publish-all-prebuilt.js",
"fetch-prebuilt": "node scripts/pre-gyp-fetch-draft.js",
"install": "npm run fetch-prebuilt || node-pre-gyp install --fallback-to-build=false || node build.js",
"test": "jest --config config/jest-unit.json",
"docs": "jsdoc api -t node_modules/minami -R README.md -d docs -c .jsdoc.json"
},
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-ble-driver-js.git"
},
"binary": {
"module_name": "pc-ble-driver-js-sd_api_v3",
"module_path": "./build/Release",
"host": "https://github.com/NordicSemiconductor/pc-ble-driver-js/releases/download/",
"remote_path": "v{version}"
},
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "6.5.7"
}
}
]
]
},
"dependencies": {
"axios": "^0.18.0",
"bindings": "^1.2.1",
"change-case": "2.3.0",
"cmake-js": "5.1.0",
"crc": "^3.4.0",
"jszip": "^3.1.2",
"mkdirp": "^0.5.1",
"nan": "^2.12.1",
"node-pre-gyp": "^0.12.0",
"nrf-device-lister": "https://github.com/essentim/nrf-device-lister-js.git",
"nrf-device-setup": "https://github.com/essentim/nrf-device-setup-js.git",
"tar": "^4.4.8",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"chai": "3.3.0",
"debug": "3.1.0",
"eslint": "^3.16.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"gh-pages": "^1.0.0",
"jest": "^23.5.0",
"jest-bamboo-formatter": "1.0.1",
"jest-serializer-path": "^0.1.14",
"jscs": "^2.3.5",
"jsdoc": "^3.4.3",
"jshint": "^2.8.0",
"keypress": "0.2.1",
"minami": "^1.2.3",
"mocha": "^2.3.3",
"node-pre-gyp-github": "1.3.1",
"proxyquire": "^1.7.3",
"sinon": "^1.17.1",
"yargs": "^3.29.0"
},
"typings": "typings/index.d.ts"
}