-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "miband",
"version": "0.1.4",
"description": "Mi Band 2 JS library",
"author": "Volodymyr Shymanskyy",
"license": "GPL-3.0",
"main": "src/miband.js",
"bin": {
"miband-test": "bin/miband-test.js"
},
"scripts": {
"start": "ecstatic ./public --port 8080",
"build": "rollup -c ./.rollup.js",
"watch": "rollup -c ./.rollup.js -w",
"debug": "node --inspect ./bin/miband-test.js",
"gh-deploy": "npm run build && gh-pages -d public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"browserify-aes": "^1.2.0",
"webbluetooth": "^1.0.6"
},
"devDependencies": {
"ecstatic": "^3.2.1",
"gh-pages": "^1.2.0",
"rollup": "^0.63.5",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-less": "^0.1.4",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0"
},
"keywords": [
"xiaomi",
"miband2",
"webbluetooth",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/vshymanskyy/miband-js"
},
"bugs": {
"url": "https://github.com/vshymanskyy/miband-js/issues"
}
}