forked from jadonk/bonescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.14 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
{
"author": {
"name": "Jason Kridner",
"email": "[email protected]",
"url": "http://blog.hangerhead.com"
},
"name": "bonescript",
"description": "Physical computing library for embedded Linux",
"keywords": [
"embedded",
"linux",
"beagleboard",
"beaglebone",
"physical",
"gpio",
"arduino"
],
"version": "0.2.5",
"homepage": "http://beagleboard.org/bonescript",
"repository": {
"type": "git",
"url": "git://github.com/jadonk/bonescript"
},
"main": "main",
"engines": {
"node": ">= 0.10.1"
},
"dependencies": {
"socket.io": "1.2.1",
"systemd": "0.2.6",
"winston": "0.6.2",
"express": "4.10.4",
"ffi": "1.2.6"
},
"optionalDependencies": {
"fibers": "1.0.1",
"serialport": "1.2.5",
"i2c": "0.1.8",
"epoll": "0.0.7"
},
"devDependencies": {
"jscoverage": "~0.5.1",
"nodeunit": "~0.9.0",
"coveralls": "~2.10.0"
},
"scripts": {
"start": "node server.js",
"test": "NODE_PATH=.. nodeunit test",
"coveralls": "NODE_PATH=.. jscoverage src && NODE_PATH=.. BONESCRIPT_COV=1 nodeunit --reporter=lcov test | coveralls"
}
}