-
Notifications
You must be signed in to change notification settings - Fork 147
/
package.json
34 lines (34 loc) · 1007 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": "^17.0.0",
"coveralls": "^3.1.0",
"grunt": "^1.3.0",
"grunt-cli": "^1.3.2",
"grunt-eslint": "^23.0.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-mocha-test": "^0.13.3",
"lerna": "^3.22.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"should": "^13.2.x",
"sinon": "^9.2.1",
"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"
}
}