forked from samkrew/node-mbus
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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
{
"name": "node-mbus",
"version": "2.2.4",
"description": "libmbus binding",
"keywords": [
"mbus"
],
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepare": "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": "node-gyp rebuild",
"test": "nyc --reporter=lcov mocha --exit",
"release": "release-script"
},
"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.5.0",
"nan": "^2.19.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@alcalzone/release-script": "^3.7.0",
"@alcalzone/release-script-plugin-license": "^3.7.0",
"mocha": "^10.4.0",
"chai": "^4.4.1",
"nyc": "^15.1.0"
}
}