-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
58 lines (58 loc) · 1.55 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
{
"name": "hoist-non-react-statics",
"version": "3.3.2",
"description": "Copies non-react specific statics from a child component to a parent component",
"main": "dist/hoist-non-react-statics.cjs.js",
"repository": {
"type": "git",
"url": "git://github.com/mridgway/hoist-non-react-statics.git"
},
"files": [
"src",
"dist",
"index.d.ts"
],
"scripts": {
"lint": "eslint src",
"build": "rimraf dist && rollup -c",
"test": "nyc mocha tests/unit/ --recursive --reporter spec --require=@babel/register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm test"
},
"author": "Michael Ridgway <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"react-is": "^16.7.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"chai": "^4.2.0",
"coveralls": "^2.11.1",
"create-react-class": "^15.5.3",
"eslint": "^4.13.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"pre-commit": "^1.0.7",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"rimraf": "^2.6.2",
"rollup": "^1.16.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"react"
],
"engines": {
"node": ">=6"
}
}