-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.05 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
52
53
{
"name": "nrf24",
"version": "0.2.0-beta",
"description": "nRF24 (nrf24l01/nrfl24l01+) radios in the nodejs way",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"install": "./node-gyp-build.sh",
"postinstall": "rm -rf rf24libs",
"package-version": "echo $npm_package_version"
},
"repository": {
"type": "git",
"url": "https://github.com/ludiazv/node-nrf24.git"
},
"keywords": [
"network",
"RF24Gateway",
"RF24Mesh",
"RF24",
"nRF24",
"tmrh20",
"radio",
"mesh",
"wireless",
"gateway",
"nrf24l01",
"nrf24l01+",
"rpi",
"OrangePi",
"BeagleBone",
"BBB",
"RaspberryPi",
"raspberry"
],
"author": "L Diaz",
"license": "MIT",
"gypfile": true,
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.17.0",
"node-gyp-build": "^4.6.0",
"nan-check": "0.0.6"
},
"devDependencies": {
"eslint": "^5.6.0",
"node-gyp": "^7.1.0",
"prebuildify": "^5.0.1"
},
"engines": {
"node": ">=12"
}
}