-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "ci-task-runner",
"version": "1.0.4",
"description": "this is a multiprocess building tasks scheduler",
"main": "src/index.js",
"bin": "bin/ci-task-runner",
"scripts": {
"example": "node bin/ci-task-runner --config example/.ci-task-runner.json",
"parallel-test": "node test/file/parallel/index.js",
"tasks-test": "node bin/ci-task-runner --config test/file/tasks/.ci-task-runner.json",
"test": "export TEST_DIST=$PWD/test/dist && istanbul cover node_modules/mocha/bin/_mocha -- --recursive --bail 'test/**/*test.js'",
"posttest": "npm run example && npm run tasks-test",
"clear": "rm -rf node_modules/.cache/ci-task-runner",
"new-test": "npm run clear && npm run test",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aui/ci-task-runner.git"
},
"engines": {
"node": ">= 6.0.0"
},
"keywords": [
"webpack",
"gulp",
"grunt",
"ci",
"git",
"svn",
"task",
"build"
],
"author": "糖饼",
"license": "MIT",
"bugs": {
"url": "https://github.com/aui/ci-task-runner/issues"
},
"homepage": "https://github.com/aui/ci-task-runner#readme",
"dependencies": {
"commander": "^2.9.0",
"find-cache-dir": "^1.0.0",
"lodash.defaultsdeep": "^4.6.0",
"npm-run-path": "^2.0.2"
},
"devDependencies": {
"jquery": "^3.1.1",
"mocha": "^3.1.2",
"webpack": "^1.13.3",
"istanbul": "^0.4.5",
"coveralls": "^2.13.0"
}
}