forked from Swaagie/assume-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "assume-react",
"version": "0.1.0",
"description": "Extends assume with assertions for React components",
"main": "dist/index.js",
"scripts": {
"prepublish": "mkdir -p dist && babel --presets es2015 -o ./dist/index.js ./index.js",
"test": "mocha --reporter spec --compilers js:babel-register ./test.js",
"watch": "mocha --watch --reporter spec --compilers js:babel-register ./test.js",
"coverage": "istanbul cover _mocha -- ./test.js --compilers js:babel-register",
"test-travis": "istanbul cover _mocha --report lcovonly -- ./test.js --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "https://github.com/swaagie/assume-react"
},
"keywords": [
"react",
"assume",
"testing",
"shallow",
"render",
"css",
"selectors",
"helpers",
"test"
],
"author": "Martijn Swaagman <[email protected]> (http://moveo.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/swaagie/assume-react/issues"
},
"homepage": "https://github.com/swaagie/assume-react",
"devDependencies": {
"assume": "~1.3.0",
"babel-cli": "~6.1.18",
"babel-core": "~6.1.20",
"babel-preset-es2015": "~6.1.18",
"babel-register": "~6.5.2",
"istanbul": "~0.4.0",
"mocha": "~2.3.0",
"pre-commit": "~1.1.0",
"react": "~0.14.2",
"react-addons-test-utils": "~0.14.2"
}
}