forked from danvk/mocha-react
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 792 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 792 Bytes
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
{
"dependencies": {
"babel": "^4.6.6",
"fluxxor": "^1.5.1",
"jsdom": "^3.1.1",
"lodash": "~2.4.1",
"react": "^0.13.3",
"react-router": "^0.13.3",
"react-tools": "^0.12.2"
},
"devDependencies": {
"blanket": "^1.1.6",
"coveralls": "^2.11.2",
"glob": "^4.3.5",
"mocha": "^2.0.1",
"mocha-lcov-reporter": "0.0.1",
"assert": "^1.3.0",
"bower": "~1.3.12",
"fluxxor-test-utils": "^0.1.1",
"mockery": "^1.4.0",
"sinon": "^1.12.2"
},
"scripts": {
"test": "mocha tests/*.js --recursive --reporter spec"
},
"config": {
"blanket": {
"pattern": "src",
"data-cover-never": [
"dist",
"node_modules",
"tests"
],
"loader": "../../../tests/blanket-stub-jsx.js"
}
}
}