-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 1.96 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
{
"name": "react-provide-props",
"version": "3.0.1",
"description": "Create react higher-order components (providers) simply",
"main": "dist/index.js",
"keywords": [
"react",
"provider",
"component",
"props",
"provide",
"high-order",
"react-component"
],
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"prepublish": "npm run build",
"test": "jest --coverage",
"build": "babel-node ./node_modules/gulp/bin/gulp.js build",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ."
},
"jest": {
"setupFiles": [
"<rootDir>/setupJest.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/seeden/react-provide-props.git"
},
"author": "Zlatko Fedor <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/seeden/react-provide-props/issues"
},
"homepage": "https://github.com/seeden/react-provide-props",
"dependencies": {
"hoist-non-react-statics": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-import": "^2.7.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-util": "^3.0.8",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"peerDependencies": {
"react": "15.x || 16.x"
}
}