-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "TenXCICDServer",
"version": "0.1.0",
"description": "a node server for CI/CD",
"main": "app.js",
"scripts": {
"i": "npm install --registry=https://registry.npm.taobao.org",
"std": "cross-env RUNNING_MODE=standard node app.js",
"build": "cross-env NODE_ENV=production RUNNING_MODE=enterprise sh build.sh",
"build-clean": "cross-env NODE_ENV=production RUNNING_MODE=enterprise sh build.sh --clean=all",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"async": "^2.0.0-rc.3",
"babel-polyfill": "^6.13.0",
"bluebird": "^3.3.5",
"cheerio": "^1.0.0-rc.2",
"co": "^4.6.0",
"co-body": "^4.0.0",
"co-busboy": "^1.3.1",
"co-request": "^1.0.0",
"cron-parser": "^2.5.0",
"docker-modem": "^0.3.1",
"dockerode": "2.0.7",
"form-data": "^1.0.0-rc4",
"fs-extra": "^0.26.7",
"ftp": "^0.3.10",
"html-pdf": "^2.2.0",
"inflation": "^2.0.0",
"js-yaml": "^3.7.0",
"kcors": "^1.3.3",
"koa": "^1.1.2",
"koa-body": "^1.4.0",
"koa-favicon": "^1.2.1",
"koa-logger": "^1.3.0",
"koa-router": "^5.3.0",
"koa-session": "^3.3.1",
"koa-static": "^2.0.0",
"lodash": "^4.11.1",
"log4js": "^0.6.27",
"moment": "^2.13.0",
"mysql": "^2.10.2",
"node-uuid": "^1.4.7",
"nodemailer": "^6.4.0",
"oauth": "^0.9.15",
"path-to-regexp": "^1.7.0",
"pem": "^1.8.1",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
"phantomjs-prebuilt": "^2.1.16",
"pinyinlite": "^1.2.1",
"promise-retry": "^1.1.1",
"qn-scope": "^0.1.1",
"raw-body": "^2.1.7",
"request": "^2.67.0",
"sequelize": "^3.21.0",
"shortid": "2.2.6",
"socket.io": "^1.4.5",
"ssh-keygen": "^0.2.1",
"sugar": "^1.4.1",
"testlink-xmlrpc": "^1.9.18-5",
"thunkify": "^2.1.2",
"urllib": "2.17.0",
"ws": "^4.1.0",
"xml2js": "^0.4.19",
"xss": "^1.0.6"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.1.4",
"json-loader": "^0.5.4",
"mocha": "^2.4.5",
"should": "^8.3.1",
"supertest": "^1.2.0",
"webpack": "^1.14.0"
}
}