-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.06 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": "dlt645driver",
"version": "1.0.0",
"description": "this is a dlt 645 intelligent power meter driver for aliyun edge gateway",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"cov": "nyc mocha",
"start": "node src/index.js",
"lint": "eslint .",
"fix": "eslint --fix .",
"doc": "npx jsdoc --private src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weizy0219/dlt645Driver.git"
},
"keywords": [
"dlt645",
"aliyun",
"edge",
"gateway",
"driver"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/weizy0219/dlt645Driver/issues"
},
"homepage": "https://github.com/weizy0219/dlt645Driver#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"sinon": "^7.5.0"
},
"pre-commit": [
"fix",
"lint"
],
"dependencies": {
"log4js": "^6.1.0",
"serialport": "^8.0.5",
"websocket": "^1.0.31"
}
}