forked from platy/node-bacnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 749 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 749 Bytes
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
{
"name": "bacnet",
"description": "(early stages) node wrapper for the bacnet-stack c library",
"version": "0.0.13",
"main": "bacnet.js",
"scripts": {
"configure": "node-gyp configure && npm run build",
"clean": "node-gyp clean",
"rebuild": "node-gyp rebuild && npm test",
"build": "node-gyp build && npm test",
"build-debug": "node-gyp --debug build",
"test": "mocha spec",
"testOnly": "mocha",
"style": "standard",
"prepublish": "standard && npm rebuild && npm test"
},
"devDependencies": {
"async": "^1.5.2",
"mocha": "^2.3.4",
"should": "^8.0.1",
"standard": "*"
},
"dependencies": {
"nan": "^2.1.0"
},
"standard": {
"ignore": [
"bacnet-stack"
]
}
}