forked from aliyun-node/agentx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 973 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
{
"name": "agentx",
"version": "1.10.5",
"description": "agentx is powered by alinode",
"scripts": {
"lint": "eslint lib test *.js",
"test": "mocha -t 5000 -R spec test/**/*.test.js test/*.test.js",
"cov": "nyc --reporter=html --reporter=text --reporter=lcov mocha -t 5000 -R spec test/**/*.test.js test/*.test.js",
"ci": "npm run lint && npm run cov && codecov",
"ut": "mocha -t 5000 -R spec"
},
"bin": {
"agentx": "./start_client.js"
},
"main": "./lib/agent",
"author": "Jackson Tian",
"license": "MIT",
"dependencies": {
"ws": "^1.1.5",
"nounou": "^1.2.1",
"debug": "^3.1.0",
"through2": "^2.0.3",
"split2": "^2.2.0"
},
"devDependencies": {
"co": "^4.6.0",
"codecov": "^3.0.0",
"eslint": "^4.19.1",
"expect.js": "^0.3.1",
"mm": "^2.2.0",
"mocha": "^5.2.0",
"nyc": "^11.6.0",
"rewire": "^2.5.2"
},
"files": [
"lib",
"client.js",
"start_client.js"
]
}