-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.41 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.41 KB
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
{
"name": "react-test-kit",
"private": true,
"version": "0.3.0",
"description": "Tools for easy testing of a React and Redux codebase",
"main": "./src/index.js",
"browserify": {
"transform": [
"babelify"
]
},
"scripts": {
"test": "gulp test"
},
"dependencies": {
"babel-core": "5.8.22",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-form": "^8.1.0",
"redux-thunk": "0.1.0",
"sizzle": "2.2.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"babel-eslint": "4.1.7",
"babelify": "6.1.2",
"browserify": "10.2.4",
"browserify-istanbul": "0.2.1",
"eslint": "1.5.0",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-jasmine": "1.6.0",
"eslint-plugin-react": "3.4.2",
"gulp": "3.9.0",
"gulp-eslint": "1.0.0",
"gulp-util": "3.0.6",
"gulp-watch": "4.3.5",
"istanbul": "gotwarlost/istanbul#source-map",
"jasmine-core": "2.3.4",
"karma": "0.13.19",
"karma-browserify": "^5.3.0",
"karma-coverage": "0.5.0",
"karma-jasmine": "0.3.5",
"karma-phantomjs-launcher": "1.0.2",
"karma-phantomjs-shim": "1.0.0",
"karma-threshold-reporter": "0.1.15",
"phantomjs": "1.9.18",
"pre-commit": "1.1.1",
"prop-types": "^15.7.2",
"watchify": "^3.11.0"
},
"pre-commit": [
"test"
]
}