-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "openevse",
"version": "1.0.1",
"description": "Node.JS library for comunicting with OpenEVSE over serial or HTTP",
"main": "lib/openevse.js",
"files": [
"lib/",
"LICENSE"
],
"scripts": {
"lint": "eslint lib",
"test": "mocha",
"cover": "nyc mocha",
"coveralls": "nyc --reporter=text-lcov mocha | coveralls"
},
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"bower_components/**"
]
},
"keywords": [],
"author": "Jeremy Poulter <[email protected]>",
"license": "ISC",
"dependencies": {
"debug": "^4.1.1",
"serialport": "^6.2.0"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^3.0.2",
"eslint": "^4.16.0",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.0",
"pre-commit": "^1.1.1"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openevse/node-openevse.git"
},
"bugs": {
"url": "https://github.com/openevse/node-openevse/issues"
},
"homepage": "https://github.com/openevse/node-openevse#readme"
}