This repository has been archived by the owner on Jun 17, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.79 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
{
"name": "test-them-all",
"version": "3.0.0",
"description": "Solution for easy integration/end-to-end test with React",
"main": "dist/src/index.js",
"scripts": {
"build": "NODE_ENV=production babel src --out-dir dist/src",
"test": "NODE_ENV=dev mocha $(find test -name '*_spec.js') --compilers js:babel-core/register -r babel-polyfill -r src/setup/setup --recursive -w",
"test-watch": "nodemon -q --exec 'npm run test -s'",
"lint": "standard | snazzy",
"posttest": "npm run lint -s",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yormi/test-them-all.git"
},
"keywords": [
"React",
"test",
"end",
"integration"
],
"author": "Guillaume Lambert <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": ">=0.14.0 <=15.x.x",
"react-addons-test-utils": ">=0.14.0 <=15.x.x",
"react-dom": ">=0.14.0 <=15.x.x"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-project-relative-import": "^2.0.1",
"fixme": "^0.4.0",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "4.x.x",
"sinon": "^1.17.5",
"snazzy": "^4.0.1",
"standard": "^8.0.0"
},
"dependencies": {
"jsdom": "^9.4.2",
"react-component-errors": "git+https://github.com/staxmanade/react-component-errors.git",
"unexpected": "^10.16.0",
"unexpected-react": "^3.2.3"
},
"standard": {
"parser": "babel-eslint",
"ignore": []
}
}