-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "scu-inspector",
"version": "0.2.0",
"description": "Displaying props changes of shouldComponentUpdate",
"main": "lib/bundle.js",
"scripts": {
"clean": "rimraf lib",
"build": "rollup --config ./rollup.config.js",
"test": "jest --config ./jest.config.js",
"test:watch": "npm test -- --watchAll",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build"
},
"engines": {
"node": ">=7.8.0"
},
"keywords": [
"React",
"props",
"scu",
"shouldComponentUpdate",
"decorator",
"es2017"
],
"files": [
"lib",
"src"
],
"author": "Tony Jin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsveron23/scu-inspector"
},
"bugs": {
"url": "https://github.com/jsveron23/scu-inspector/issues"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.2",
"rimraf": "^2.6.2",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-uglify": "^3.0.0"
}
}