forked from firmata/firmata.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1006 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
{
"name": "firmata-monorepo",
"description": "Firmata protocol implementation for programmatic interaction with Arduino and Arduino compatible development boards.",
"private": true,
"version": "2.1.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"
},
"devDependencies": {
"browserify": "^16.2.3",
"coveralls": "^3.0.9",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-eslint": "^22.0.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-mocha-test": "^0.13.3",
"lerna": "^3.20.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"should": "^7.1.x",
"sinon": "^8.0.3",
"webpack": "^1.12.14"
},
"scripts": {
"test": "grunt",
"test-cover": "nyc grunt test",
"coveralls": "nyc --reporter=lcov grunt test && cat ./coverage/lcov.info | coveralls",
"postinstall": "lerna bootstrap --no-ci"
}
}