-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.01 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": "atool-test",
"version": "0.5.5",
"description": "Unit testing tool based on dora & mocha & webpack",
"keywords": [
"testing",
"webpack",
"istanbul",
"mocha",
"react",
"babel6",
"dora"
],
"bin": {
"atool-test": "./bin/atool-test"
},
"files": [
"bin",
"lib",
"package.json",
"README.md"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ant-tool/atool-test.git"
},
"homepage": "https://github.com/ant-tool/atool-test",
"dependencies": {
"atool-monitor": "0.x",
"chai": "~3.5.0",
"chalk": "^1.1.1",
"chokidar": "^1.4.3",
"commander": "~2.9.0",
"exeq": "^2.4.0",
"glob": "^7.0.0",
"html-webpack-plugin": "^2.20.0",
"isparta-loader": "^2.0.0",
"istanbul": "~0.4.2",
"koa-router": "^5.4.0",
"koa-webpack-dev-middleware": "^1.1.0",
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.0.2",
"object-assign": "^4.0.1",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0",
"webpack": "~1.12.14",
"atool-build": "~0.11.0",
"dora": "~0.4.2",
"babel-polyfill": "~6.9.1"
},
"devDependencies": {
"babel-cli": "~6.3.15",
"babel-core": "~6.3.15",
"babel-istanbul": "^0.5.9",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.3.13",
"babel-preset-stage-0": "~6.3.13",
"coveralls": "^2.11.6",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2",
"isparta": "~4.0.0",
"supertest": "~1.2.0"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib && cp src/runner.ejs lib/runner.ejs",
"build-watch": "babel -w src --out-dir lib",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm run build && istanbul cover ./node_modules/.bin/_mocha -- --no-timeouts",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
}
}