forked from sdg9/why-did-you-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.5 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
{
"name": "why-did-you-update",
"version": "1.0.6",
"description": "Patch React to discover unnecessary re-renders",
"main": "lib/index.js",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"eslint": "eslint src --ext js",
"build": "nwb build",
"clean": "nwb clean",
"start": "nwb serve",
"test": "nwb test",
"test:watch": "nwb test --server",
"release:patch": "nwb build && npm version patch && npm publish"
},
"dependencies": {
"lodash": "^4.17.11",
"react-fast-compare": "^2.0.4"
},
"peerDependencies": {
"react": ">=16"
},
"devDependencies": {
"babel-plugin-lodash": "^3.3.4",
"create-react-class": "^15.6.3",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"lodash-webpack-plugin": "^0.11.5",
"nwb": "^0.23.0",
"prettier": "^1.15.2",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-hot-loader": "^4.3.12"
},
"authors": [
"Vitali Zaidman <[email protected]> (https://github.com/vzaidman)",
"Michael Schneider <[email protected]> (https://github.com/maicki)",
"Gabe Scholz <[email protected]> (https://github.com/garbles)"
],
"license": "MIT",
"repository": "https://github.com/maicki/why-did-you-update",
"keywords": [
"react-component"
]
}