-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "react-with-lifecycle",
"version": "1.0.0",
"description": "HOC to add lifecycle hooks to any component, even stateless ones.",
"main": "dist/bundle.js",
"engines": {
"node": "10.15.1",
"npm": "6.4.1"
},
"scripts": {
"build": "rollup -c",
"flow": "flow check",
"lint": "eslint src",
"prepublish": "NODE_ENV=ci rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bspaulding/react-with-lifecycle.git"
},
"keywords": [
"react",
"higher",
"order",
"component",
"lifecycle"
],
"author": "Bradley J. Spaulding",
"license": "MIT",
"bugs": {
"url": "https://github.com/bspaulding/react-with-lifecycle/issues"
},
"homepage": "https://github.com/bspaulding/react-with-lifecycle#readme",
"dependencies": {
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-react": "^6.16.0",
"flow-bin": "^0.33.0",
"jest": "^16.0.2",
"rollup": "^0.36.3",
"rollup-plugin-babel": "^2.6.1"
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"babel-jest": "^16.0.0",
"babel-plugin-external-helpers": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"enzyme": "^2.5.1",
"eslint": "^3.8.1",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-react": "^6.4.1",
"flow-typed": "^2.0.0",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2"
}
}