-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.7 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
{
"name": "rp-hoc",
"version": "0.1.0",
"description": "Convert between Render Props and HOC",
"main": "dist/rp-hoc.cjs.js",
"module": "dist/rp-hoc.es.js",
"unpkg": "dist/rp-hoc.umd.js",
"scripts": {
"prepublish": "npm run build",
"lint": "eslint *.js src/ test/",
"lint:watch": "esw *.js src/ test/ -w",
"ava": "ava test/ --verbose",
"ava:watch": "ava test/ --watch --verbose",
"dev": "concurrently -p \"[{name}]\" -n \"lint,ava\" \"npm run lint:watch\" \"npm run ava:watch\"",
"test": "npm run lint && npm run ava",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:umd-min",
"build:cjs": "cross-env TARGET=cjs rollup -c",
"build:es": "cross-env TARGET=es rollup -c",
"build:umd": "cross-env TARGET=umd rollup -c",
"build:umd-min": "cross-env TARGET=umd NODE_ENV=production rollup -c"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
],
"failWithoutAssertions": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/malash/rp-hoc.git"
},
"keywords": [
"react",
"render-props",
"hoc",
"decorator"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/malash/rp-hoc/issues"
},
"homepage": "https://github.com/malash/rp-hoc#readme",
"devDependencies": {
"@noflux/react": "^0.8.1",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.26.0",
"concurrently": "^3.5.0",
"cross-env": "^5.0.5",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.2",
"jsdom": "^11.7.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-toggled": "^1.2.6",
"react-value": "^0.2.0",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"rimraf": "^2.6.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"sinon": "^4.5.0"
},
"peerDependencies": {
"react": ">=15.3.0"
},
"dependencies": {
"react-is": "^16.3.1"
}
}