forked from GianlucaGuarini/nodejs-arduino-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 747 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 747 Bytes
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
{
"name": "nodejs-arduino-example",
"version": "0.0.2",
"description": "Simple example to show how to use arduino to send digital signals to a nodejs server",
"main": "server.js",
"dependencies": {
"serialport": "^1.2.5",
"socket.io": "^0.9.16"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/GianlucaGuarini/nodejs-arduino-example.git"
},
"author": "Gianluca Guarini",
"license": "MIT",
"bugs": {
"url": "https://github.com/GianlucaGuarini/nodejs-arduino-example/issues"
},
"homepage": "https://github.com/GianlucaGuarini/nodejs-arduino-example"
}