-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 894 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": "node-on-pi",
"version": "0.0.1",
"description": "Samples scripts for nodejs on the Raspberry PI, using onoff.js and other libs",
"keywords": [
"RaspberryPI",
"onoff",
"i2c-bus",
"I2C",
"ADC",
"SPI",
"sensor",
"robot"
],
"license": "MIT",
"dependencies": {
"onoff": "^1.1.1",
"i2c-bus": "^1.1.1",
"serialport": "^10.0.1",
"websocket": "^1.0.23",
"node-rest-client": "3.1.0"
},
"main": "testMcp3008.js",
"devDependencies": {},
"scripts": {
"test": "node testMcp3008.js",
"start": "node demo.gps.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OlivierLD/node.pi.git"
},
"author": "Olivier LeDiouris <[email protected]>",
"bugs": {
"url": "https://github.com/OlivierLD/node.pi/issues"
},
"homepage": "https://github.com/OlivierLD/node.pi#readme"
}