forked from Apollon77/node-mbus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "node-mbus",
"version": "0.5.4",
"description": "libmbus binding",
"keywords": [
"mbus"
],
"main": "index.js",
"engines": {
"node": ">= 4"
},
"scripts": {
"prepublish":"rm -rf libmbus && git clone -b build-windows --single-branch https://github.com/Apollon77/libmbus.git libmbus && rm libmbus/.gitignore && cp config.h libmbus/config.h",
"build": "node-gyp build",
"install": "rm -rf libmbus && git clone -b build-windows --single-branch https://github.com/Apollon77/libmbus.git libmbus && rm libmbus/.gitignore && cp config.h libmbus/config.h && node-gyp rebuild",
"test": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec"
},
"author": {
"name": "Apollon77",
"email": "[email protected]"
},
"contributors": [
"Semen Krivosheev <[email protected]>",
"Apollon77"
],
"repository": {
"type": "git",
"url": "https://github.com/Apollon77/node-mbus"
},
"license": "MIT",
"dependencies": {
"bindings": "^1.3.0",
"nan": "~2.9.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"mocha": "^5.0.0",
"chai": "^4.1.2",
"istanbul": "*"
}
}