forked from firmata/firmata.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "firmata",
"description": "Firmata protocol implementation for programmatic interaction with Arduino and Arduino compatible development boards.",
"version": "0.16.0",
"author": "Julian Gautier",
"license": "MIT",
"homepage": "http://www.github.com/firmata/firmata.js",
"repository": {
"type": "git",
"url": "git://github.com/firmata/firmata.js.git"
},
"main": "lib/firmata",
"bin": {
"firmata": "./repl.js"
},
"devDependencies": {
"browserify": "^13.0.0",
"common-tags": "^1.4.0",
"coveralls": "^2.11.15",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jsbeautifier": "~0.2.13",
"grunt-jscs": "^3.0.1",
"grunt-mocha-test": "~0.12.7",
"mocha": "^2.3.x",
"nyc": "^10.0.0",
"should": "^7.1.x",
"sinon": "~1.17.1",
"webpack": "^1.12.14"
},
"dependencies": {
"browser-serialport": "latest",
"es6-shim": "latest",
"serialport": "^4.0.0"
},
"scripts": {
"test": "grunt",
"attempt-timeout": "node examples/test-i2c-read.js && node examples/test-i2c-read.js && node examples/test-analog-read.js && node examples/test-analog-read.js && node examples/test-serial-read.js && node examples/test-serial-read.js",
"test-cover": "nyc grunt test",
"coveralls": "nyc --reporter=lcov grunt test && cat ./coverage/lcov.info | coveralls"
}
}