-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.4 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
{
"name": "react-forwardref-utils",
"version": "1.0.1",
"description": "Utils to help with React 16.3+ forwardRef method",
"author": "Pavel Klimashkin",
"repository": {
"type": "git",
"url": "git+https://github.com/klimashkin/react-forwardref-utils.git"
},
"keywords": [
"react",
"forwardref"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/klimashkin/react-forwardref-utils/issues"
},
"homepage": "https://github.com/klimashkin/react-forwardref-utils#readme",
"main": "./dist/react-forwardref-utils.js",
"es2015": "./dist/es2015/react-forwardref-utils.js",
"es2017": "./dist/es2017/react-forwardref-utils.js",
"files": [
"dist",
"src"
],
"dependencies": {
"hoist-non-react-statics": "^2.5.0"
},
"peerDependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.13",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.4",
"github-changes": "^1.1.2",
"null-loader": "^0.1.1",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"scripts": {
"preversion": "npm run clean && npm run build",
"postversion": "npm run changelog",
"build:umd": "cross-env BUILD_MODE=umd webpack",
"build:umd-min": "cross-env BUILD_MODE=umd-min webpack",
"build:es6": "cross-env BUILD_MODE=es2015 webpack",
"build:es6-min": "cross-env BUILD_MODE=es2015-min webpack",
"build:es8": "cross-env BUILD_MODE=es2017 webpack",
"build:es8-min": "cross-env BUILD_MODE=es2017-min webpack",
"build": "npm run build:umd && npm run build:umd-min && npm run build:es6 && npm run build:es6-min && npm run build:es8 && npm run build:es8-min",
"clean": "rimraf dist",
"changelog": "github-changes -o klimashkin -r react-forwardref-utils -b master -f ./CHANGELOG.md --order-semver --use-commit-body"
},
"engines": {
"node": ">=6.0.0"
}
}