forked from serialport/node-serialport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.62 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
{
"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": ">=10.0.0"
},
"license": "MIT",
"scripts": {
"rebuild": "lerna run --stream rebuild",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"format": "eslint packages test --fix",
"generate": "plop",
"lint": "eslint packages test && lerna run --stream lint",
"outdated": "lerna exec --no-bail npm outdated && npm outdated",
"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"
},
"devDependencies": {
"cc": "^3.0.1",
"chai": "^4.3.0",
"chai-subset": "^1.5.0",
"codecov": "^3.8.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"lerna": "^3.22.1",
"mocha": "^8.3.0",
"node-abi": "^2.19.3",
"nyc": "^15.1.0",
"plop": "^2.7.4",
"prebuild": "^10.0.1",
"prettier": "^2.2.1",
"proxyquire": "^2.1.3",
"sinon": "^9.2.4"
},
"funding": "https://opencollective.com/serialport/donate"
}