-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.07 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
{
"name": "owfs",
"version": "0.4.0",
"description": "A client library for 1-wire devices using the owserver protocol",
"main": "lib/owfs.js",
"keywords": [
"1-wire",
"owfs",
"owserver",
"ds18b20",
"ds18s20"
],
"repository": {
"type": "git",
"url": "https://github.com/njh/node-owfs.git"
},
"author": "Benedikt Arnold <[email protected]>",
"license": "MIT",
"scripts": {
"test": "./scripts/run-eslint.sh && nyc mocha test/*.js"
},
"nyc": {
"check-coverage": true,
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90,
"reporter": [
"text",
"html"
]
},
"dependencies": {
"debug": "^4.1.1",
"network-byte-order": "^0.2.0"
},
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"minimist": "^1.2.0",
"sinon": "^7.2.3"
}
}