forked from lvogt/node-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "serialport-monorepo",
"private": true,
"version": "0.0.0",
"description": "Node.js packages to access serial ports, process data from them and speak many protocols",
"engines": {
"node": ">=6.0.0"
},
"license": "MIT",
"scripts": {
"rebuild": "lerna run --stream rebuild",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"docs": "cd packages/website && npm run build",
"docs:dev": "cd packages/website && npm run start",
"format": "eslint packages test --fix",
"generate": "plop",
"lint": "eslint packages test && lerna run --stream lint",
"postinstall": "lerna bootstrap --no-ci",
"prebuild": "lerna run --stream prebuild",
"publish": "lerna publish",
"test": "nyc --reporter=html --reporter=text --reporter lcovonly mocha",
"test:arduino": "TEST_PORT=$(./bin/find-arduino.js) npm test",
"test:watch": "mocha -w"
},
"repository": {
"type": "git",
"url": "git://github.com/node-serialport/node-serialport.git"
},
"maintainers": [
{
"name": "Francis Gulotta",
"email": "[email protected]",
"url": "https://www.roborooter.com"
}
],
"dependencies": {},
"devDependencies": {
"bluebird": "^3.5.2",
"cc": "^1.0.1",
"chai": "^4.0.2",
"chai-subset": "^1.5.0",
"codecov": "^3.1.0",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"lerna": "^3.4.3",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"plop": "^2.1.0",
"prebuild": "^8.1.2",
"prettier": "^1.14.2",
"proxyquire": "^2.1.0",
"sinon": "^6.3.3"
}
}