-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "react-testing-components-enzyme",
"version": "1.0.0",
"description": "Sample repo for a blog post on testing react components with enzyme",
"main": "index.js",
"scripts": {
"test": "mocha -w test/helpers/browser.js test/*.spec.js",
"dev:hot": "webpack-dev-server --hot --inline --progress --colors --watch --display-error-details --display-cached --content-base ./"
},
"ava": {
"require": [
"./test/helpers/setup-browser-env.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/markthethomas/react-testing-components-enzyme.git"
},
"author": "Mark Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/markthethomas/react-testing-components-enzyme/issues"
},
"homepage": "https://github.com/markthethomas/react-testing-components-enzyme#readme",
"devDependencies": {
"ava": "^0.12.0",
"babel-core": "^6.6.4",
"babel-loader": "^6.2.4",
"babel-preset-airbnb": "^1.1.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bell-on-bundler-error-plugin": "^1.0.8",
"chai": "^3.5.0",
"enzyme": "^2.0.0",
"jsdom": "^8.1.0",
"mocha": "^3.0.2",
"react-addons-test-utils": "^0.14.7",
"sinon": "^1.17.3",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"axios": "^0.9.1",
"md5": "^2.0.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"engines" : {
"node" : ">=6.2.2"
}
}