-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 889 Bytes
/
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
{
"name": "rc522-c7z",
"version": "0.0.8",
"description": "Node.js package for Rapsberry Pi & RC522 RFID Reader combo, with TypeScript support",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/JCornat/rc522-c7z.git"
},
"keywords": [
"rc522",
"rfid",
"c7z",
"cornat",
"jcornat"
],
"author": "Jacques Cornat",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/JCornat/rc522-c7z/issues"
},
"homepage": "https://github.com/JCornat/rc522-c7z#readme",
"dependencies": {
"@types/node": "^7.0.12"
},
"scripts": {
"install": "(node-gyp rebuild) || (exit 0)",
"preinstall": "(node-gyp configure) || (exit 0)",
"clean": "((node-gyp clean) && (rm -rf node_modules)) || (exit 0)",
"build-debug": "(node-gyp configure --debug && node-gyp rebuild --debug) || (exit 0)"
}
}