forked from sse2018-makyek-fun/makyek-jd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
{
"name": "reversi-jd",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"compileTest": "node .dist/jd.js --role compileTest",
"build": "gulp clean && gulp jd",
"watch:compile": "gulp clean && gulp --role compile",
"watch:match": "gulp clean && gulp --role match",
"dep-install": "npm install --registry=https://registry.npm.taobao.org --disturl=https://npm.taobao.org/dist"
},
"dependencies": {
"amqplib": "^0.5.2",
"app-module-path": "^2.0.0",
"async-cache": "^1.1.0",
"babel-runtime": "^6.11.6",
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"child-process-promise": "^2.1.3",
"dargs": "^5.1.0",
"del": "^2.2.2",
"dg-error-factory": "^1.0.2",
"dg-framework": "^2.0.1",
"es6-error": "^4.0.0",
"eventemitter2": "^2.1.3",
"fs-promise": "^0.5.0",
"iconv-lite": "^0.4.15",
"jschardet": "^1.4.1",
"lodash": "^4.16.2",
"lzma-native": "^3.0.2",
"moment": "^2.15.1",
"promise-retry": "^1.1.1",
"request": "^2.75.0",
"request-promise-native": "^1.0.3",
"shell-quote": "^1.6.1",
"source-map-support": "^0.4.3",
"string-format": "^0.5.0",
"uuid": "^2.0.3",
"winston": "^2.2.0",
"yargs": "^6.0.0"
},
"devDependencies": {
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"del": "^2.2.2",
"eslint": "^3.6.1",
"eslint-plugin-babel": "^3.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-file-cache": "0.0.1",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^1.6.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime",
"transform-decorators-legacy"
]
}
}