-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.62 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
{
"name": "app-backup-swarm",
"version": "1.0.0",
"description": "备份docker swarm",
"main": "./build/index.js",
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.2",
"lodash": "^4.17.10",
"source-map-support": "^0.5.8"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.26.0",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"chalk": "^2.4.1",
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"mocha": "^5.1.1",
"mochawesome": "^3.0.3",
"opn": "^5.3.0",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-sources": "^1.2.0"
},
"scripts": {
"clean": "babel-node ./tools/run clean",
"build": "cross-env NODE_ENV=production babel-node --max-old-space-size=7168 ./tools/run build",
"test": "mocha -t 100000 \"src/**/*.test.js\" --require babel-register --require tests/setup.js",
"test2": "mocha -t 100000 \"src/libs/Container.test.js\" --require babel-register --require tests/setup.js",
"eslint": "eslint \"src/**/*.js\"",
"eslint-fix": "eslint --fix \"src/**/*.js\""
},
"author": "",
"license": "ISC"
}