-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 920 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "serial-io",
"version": "1.2.0",
"description": "serialport interface for batch style commands",
"license": "MIT",
"repository": "anoff/serial-io",
"author": {
"name": "anoff",
"email": "[email protected]",
"url": "https://anoff.io"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "npm run lint && npm run unit:coverage",
"unit:watch": "ava --watch",
"unit:coverage": "nyc ava",
"unit": "ava",
"lint": "standard"
},
"keywords": [
"serial",
"io",
"string",
"commands"
],
"dependencies": {
"serialport": "^9.0.0"
},
"devDependencies": {
"ava": "^3.8.2",
"coveralls": "^3.1.0",
"nyc": "^15.0.1",
"standard": "^14.3.4",
"testdouble": "^3.15.0"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"ava": {
"files": [
"!test/*.js",
"**/*.test.js"
]
}
}