-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "radiodan-physical-ui",
"version": "1.0.0",
"description": "A physical interface for Radiodan",
"main": "lib/bootstrap",
"bin": {
"radiodan-physical-ui": "./bin/server"
},
"scripts": {
"start": "bin/server",
"dev": "WIRING_PI=mock bin/server",
"test": "node_modules/mocha/bin/mocha --recursive --reporter=spec",
"coverage": "node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test/**/test*.js -- --ui bdd -R spec -t 5000",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/radiodan/physical-ui.git"
},
"optionalDependencies": {
"wiring-pi": "~2.1.1"
},
"dependencies": {
"request": "~2.34.0",
"radiodan-client": "~1.0.0",
"mod-loop": "0.0.2",
"lodash": "~2.4.1",
"tween.js": "~0.14.0",
"animation-loops": "~2.0.4"
},
"keywords": [
"radiodan"
],
"author": "Andrew Nicolaou <[email protected]>",
"license": "Apache-2",
"bugs": {
"url": "https://github.com/radiodan/physical-ui/issues"
},
"homepage": "https://github.com/radiodan/physical-ui",
"devDependencies": {
"chai-as-promised": "~4.1.1",
"chai": "~1.9.1",
"sinon": "~1.10",
"mocha": "~1.18.2",
"istanbul": "~0.2.7"
}
}