-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.61 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
{
"name": "atool-test-mocha",
"version": "0.2.1",
"description": "Unit testing tool based on mocha & sinon & chai, run tests with jsdom",
"keywords": [
"testing",
"istanbul",
"mocha",
"react",
"babel6",
"sinon",
"chai",
"jsdom"
],
"bin": {
"atool-test-mocha": "./bin/atool-test-mocha"
},
"files": [
"bin",
"lib",
"package.json",
"README.md"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ant-tool/atool-test-mocha.git"
},
"homepage": "https://github.com/ant-tool/atool-test-mocha",
"dependencies": {
"atool-monitor": "0.x",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.11.6",
"chai": "~3.5.0",
"commander": "~2.9.0",
"jsdom": "^11.5.1",
"mocha": "^3.5.0",
"nyc": "^11.4.1",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"coveralls": "^2.11.6",
"eslint": "^2.2.0",
"eslint-config-airbnb": "^6.0.2"
},
"scripts": {
"build": "rm -rf lib && babel src --out-dir lib",
"build-watch": "babel -w src --out-dir lib",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm run build && ./bin/atool-test-mocha --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports"
]
}
}