-
Notifications
You must be signed in to change notification settings - Fork 159
/
package.json
61 lines (61 loc) · 1.5 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
{
"author": {
"name": "Jason Kridner",
"email": "[email protected]",
"url": "http://jkridner.wordpress.com"
},
"name": "bonescript",
"description": "Physical computing library for embedded Linux",
"keywords": [
"embedded",
"linux",
"beagleboard",
"beaglebone",
"physical",
"gpio",
"arduino"
],
"version": "0.7.4-beta1",
"homepage": "http://beagleboard.org/bonescript",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jadonk/bonescript"
},
"main": "main",
"types": "./src/index.d.ts",
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"chokidar": "2.0.3",
"express": "4.13.4",
"socket.io": "1.4.5",
"systemd": "0.3.1",
"winston": "2.1.1",
"@types/verror": "latest",
"shelljs": "0.8.2"
},
"optionalDependencies": {
"serialport": "6.0.5",
"@types/serialport": "latest",
"i2c": "0.2.3",
"epoll": "0.1.18",
"pi-spi": "1.0.2",
"roboticscape": "0.0.8",
"ffi": "2.2.0"
},
"devDependencies": {
"coveralls": "~3.0.1",
"js-beautify": "^1.7.5",
"jscoverage": "~0.6.0",
"nodeunit": "^0.11.2",
"socket.io-client": "1.4.5"
},
"scripts": {
"start": "node server.js",
"test": "NODE_PATH=.. nodeunit test",
"beautify": "NODE_PATH=.. js-beautify --config lint-config.json -r -f *.js src/*.js test/*.js",
"coveralls": "NODE_PATH=.. jscoverage src && NODE_PATH=.. BONESCRIPT_COV=1 nodeunit --reporter=lcov test | coveralls"
}
}