-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1000 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
41
42
43
44
{
"name": "@alicloud/agenthub",
"version": "2.0.1",
"description": "整合 agentx 和 commandx 便利工具",
"main": "lib/agenthub.js",
"bin": {
"agenthub": "bin/agenthub"
},
"scripts": {
"lint": "eslint bin/* lib test --fix",
"test": "mocha -R spec -t 80000 test/*.js --exit",
"cov": "nyc -r json -r lcov -r text-summary npm test",
"ci": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aliyun-node/agenthub.git"
},
"keywords": [
"agentx",
"commandx",
"alinode"
],
"author": "aliyun-node",
"license": "MIT",
"bugs": {
"url": "https://github.com/aliyun-node/agenthub/issues"
},
"homepage": "https://github.com/aliyun-node/agenthub#readme",
"files": [
"bin",
"lib"
],
"dependencies": {
"agentx": "^1.8.4",
"commandx": "^1.3.3",
"nounou": "^1.2.1"
},
"devDependencies": {
"eslint": "^4.18.2",
"mocha": "^5.0.3",
"nyc": "^11.4.1"
}
}