-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "eva_cd",
"version": "0.0.1",
"description": "A Continuous Delivery tool for Docker & EvaEngine based project",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/EvaEngine/docker-builder.git"
},
"scripts": {
"ava": "LOG_LEVEL=error NODE_ENV=test node ./node_modules/.bin/ava --verbose --serial",
"start": "NODE_ENV=production node ./build/app.js",
"test": "npm run coverage",
"crontab": "NODE_ENV=production babel-node ./src/crontab",
"coverage": "nyc -a --reporter=lcov --reporter=text --reporter=html npm run ava",
"dev": "nodemon --exec babel-node ./src/app.js",
"swagger": "rm -rf ./build && npm run build && node build/swagger/app.js",
"swagger-dev": "rm -rf ./build && npm run build && nodemon --ignore 'node_modules/*' --ignore '**/*.json' --exec babel-node src/swagger.js",
"lint": "./node_modules/.bin/eslint src/**/*.js",
"worker": "node build/worker.js",
"build": "babel -d build/ src/"
},
"ava": {
"files": [
"test/**/*.js",
"!test/bootstrap.js",
"!config/**/*.js"
],
"source": [
"src/**/*.js"
],
"failFast": true,
"tap": false,
"require": [
"babel-core/register"
],
"babel": "inherit"
},
"nyc": {
"require": [
"babel-core/register"
],
"include": [
"src/**/*.js"
]
},
"engines": {
"node": ">=6.7.0"
},
"dependencies": {
"body-parser": "^1.15.2",
"child-process-promise": "^2.1.3",
"cors": "^2.7.1",
"evaengine": "^0.1.24",
"kue": "^0.11.1",
"moment": "^2.15.1",
"on-finished": "^2.3.0",
"pug": "^2.0.0-beta3",
"qiniu": "^6.1.11",
"serve-favicon": "^2.3.0",
"serve-static": "^1.11.1",
"winston": "^2.2.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-builtin-extend": "^1.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-stage-3": "^6.17.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"nyc": "^8.3.1"
}
}