forked from JamesBarwell/rpi-gpio.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 836 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
33
34
35
36
37
38
{
"name": "rpi-gpio",
"version": "2.1.7",
"description": "Control Raspberry Pi GPIO pins with node.js",
"main": "rpi-gpio.js",
"keywords:": [
"raspberry",
"pi",
"gpio"
],
"directories": {
"test": "test",
"integration": "integration"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"sinon": "^7.4.2"
},
"scripts": {
"test": "mocha",
"spec": "mocha --reporter spec",
"coverage": "istanbul cover _mocha",
"int": "mocha test/integration"
},
"repository": {
"type": "git",
"url": "https://github.com/JamesBarwell/rpi-gpio.js.git"
},
"author": "James Barwell <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"async-retry": "^1.2.1",
"debug": "^3.1.0",
"epoll": "^2.0.10"
}
}