This repository was archived by the owner on Mar 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 KB
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
53
54
55
56
57
{
"name": "c3pr-agent",
"version": "25.0.0",
"description": "C3PR Container agent",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"debug": "node %NODE_DEBUG_OPTION% src/index.js",
"debug-agent-fake-tool": "node %NODE_DEBUG_OPTION% tests/e2e/index.js",
"debug-bundle": "node %NODE_DEBUG_OPTION% dist/c3pr-agent.js",
"test": "mocha src/**/*.test.js",
"bundle": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c3pr/c3pr-agent.git"
},
"keywords": [
"c3pr",
"tool",
"agent"
],
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/c3pr/c3pr-agent/issues"
},
"homepage": "https://github.com/c3pr/c3pr-agent",
"dependencies": {
"await-semaphore": "^0.1.3",
"axios": "0.21.2",
"body-parser": "^1.18.2",
"chardet": "github:c3pr/node-chardet#v0.5.0-patch",
"express": "^4.16.3",
"iconv-lite": "^0.4.23",
"is-docker": "^1.1.0",
"js-yaml": "^3.13.1",
"mkdirp": "^0.5.1",
"node-c3pr-git-client": "github:c3pr/node-c3pr-git-client#19.0.0",
"node-c3pr-hub-client": "github:c3pr/node-c3pr-hub-client#29.0.0",
"node-c3pr-logger": "github:c3pr/node-c3pr-logger#27.0.0",
"rimraf": "^2.6.2",
"uuid": "^3.2.1"
},
"devDependencies": {
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"rollup": "^0.57.1",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-minify-es": "^1.1.1",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"sinon": "^4.2.2"
}
}