-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.38 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-dom-utils",
"version": "2.0.2",
"description": "DOM operation utilities for React",
"main": "lib/index.js",
"scripts": {
"watch": "webpack-dev-server --config ./example/webpack.config.js",
"lint": "eslint ./",
"test": "NODE_ENV=test npm run lint && NODE_ENV=test jest",
"test:coverage": "nyc npm run test",
"coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"build": "NODE_ENV=production babel src --out-dir lib",
"prepublish": "npm run build",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wuct/react-dom-utils.git"
},
"keywords": [
"react",
"dom",
"utilities",
"hoc",
"high-order",
"components",
"toolkit"
],
"author": "wuct",
"license": "MIT",
"bugs": {
"url": "https://github.com/wuct/react-dom-utils/issues"
},
"homepage": "https://github.com/wuct/react-dom-utils#readme",
"babel": {
"presets": [
"react-app"
]
},
"jest": {
"setupFiles": [
"babel-register",
"./test/setupJsdom.js",
"./test/setupEnzyme.js"
]
},
"dependencies": {
"element-resize-detector": "^1.1.0",
"lodash": "^4.6.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "8.2.2",
"babel-loader": "^7.0.0",
"babel-preset-react-app": "^3.1.0",
"babel-register": "^6.7.2",
"codecov": "^3.0.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.4",
"eslint": "^5.0.0",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.0.1",
"expect": "^1.18.0",
"html-webpack-plugin": "^3.0.0",
"husky": "^0.14.3",
"jest": "^22.0.0",
"jsdom": "^11.0.0",
"lint-staged": "^7.0.0",
"nyc": "^11.0.3",
"prettier": "^1.5.3",
"raf-throttle": "^2.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"recompose": "^0.26.0",
"simulant": "^0.2.0",
"webpack": "^4.5.0",
"webpack-dev-server": "^3.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0",
"recompose": "^0.20.0 || ^0.21.0 || ^0.22.0 || ^0.26.0"
}
}