This repository was archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-unit-testing-utils",
"version": "3.2.5",
"description": "React unit testing utils",
"main": "lib/index.js",
"repository": "github:HealthByRo/react-unit-testing-utils",
"keywords": [
"react",
"unit",
"testing",
"utils"
],
"author": "Andrzej Dybionka",
"license": "ISC",
"homepage": "https://github.com/HealthByRo/react-unit-testing-utils/",
"scripts": {
"build": "rm -rf lib && babel --presets es2015,stage-0 -d lib/ src/",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint:js",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:js": "npm run lint:eslint -- ./src ",
"lint:staged": "lint-staged"
},
"pre-commit": "lint:staged",
"lint-staged": {
"*.js": "lint:eslint"
},
"peerDependencies": {
"enzyme": "> 3.x",
"enzyme-to-json": "> 3.x",
"immutable": "> 3.x",
"jest-serializer-enzyme": "> 1.x",
"prop-types": "> 15.x",
"react": "> 15.x",
"react-intl": "> 2.x",
"react-redux": "> 5.x",
"react-router": "> 4.x",
"react-router-dom": "> 4.x",
"react-router-redux": "> 4.x",
"react-test-renderer": "> 16.x",
"redux": "> 3.x",
"redux-immutable": "> 4.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.0.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^3.9.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-import-resolver-webpack": "0.8.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-redux-saga": "0.1.5",
"immutable": "^3.8.2",
"jest-serializer-enzyme": "^1.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.4",
"react-intl": "^2.8.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-redux": "^4.0.8",
"react-test-renderer": "^16.8.4",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0"
}
}