-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "arduino-firmata",
"private": false,
"version": "0.3.4",
"description": "Arduino Firmata implementation for Node.js",
"main": "lib/arduino-firmata.js",
"scripts": {
"test": "grunt test",
"build": "grunt build",
"watch": "grunt"
},
"devDependencies": {
"coffee-errors": "*",
"coffee-script": "^1.8",
"async": "*",
"mocha": "*",
"grunt": "*",
"grunt-cli": "*",
"grunt-simple-mocha": "*",
"grunt-notify": "*",
"grunt-contrib-coffee": "*",
"grunt-coffeelint": "*",
"grunt-contrib-watch": "*",
"socket.io": "*"
},
"keywords": [
"arduino",
"firmata"
],
"author": "Sho Hashimoto <[email protected]>",
"license": "MIT",
"dependencies": {
"serialport": "*",
"eventemitter2": "*",
"debug": "*"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git://github.com/shokai/node-arduino-firmata.git"
},
"bugs": {
"url": "https://github.com/shokai/node-arduino-firmata/issues"
},
"homepage": "https://github.com/shokai/node-arduino-firmata"
}