-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "agentx",
"version": "1.10.8",
"description": "agentx is powered by alinode",
"scripts": {
"lint": "eslint --fix .",
"test-dev": "mocha -t 5000 -R spec",
"cov-dev": "nyc --reporter=html --reporter=text --reporter=lcov npm run test-dev",
"test": "mocha --exit -b -t 5000 -R spec test/**/*.test.js test/*.test.js",
"cov": "nyc --reporter=html --reporter=text --reporter=lcov npm run test",
"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": {
"debug": "^4.3.4",
"nounou": "^1.2.1",
"split2": "^4.1.0",
"through2": "^4.0.2",
"ws": "^1.1.5"
},
"devDependencies": {
"codecov": "^3.0.0",
"eslint": "^8.18.0",
"expect.js": "^0.3.1",
"mm": "^3.2.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"rewire": "^7.0.0"
},
"files": [
"lib",
"client.js",
"start_client.js"
]
}