UNPKG

1.55 kBJSONView Raw
1{
2 "name": "hoist-non-react-statics",
3 "version": "3.3.2",
4 "description": "Copies non-react specific statics from a child component to a parent component",
5 "main": "dist/hoist-non-react-statics.cjs.js",
6 "repository": {
7 "type": "git",
8 "url": "git://github.com/mridgway/hoist-non-react-statics.git"
9 },
10 "files": [
11 "src",
12 "dist",
13 "index.d.ts"
14 ],
15 "scripts": {
16 "lint": "eslint src",
17 "build": "rimraf dist && rollup -c",
18 "test": "nyc mocha tests/unit/ --recursive --reporter spec --require=@babel/register",
19 "coverage": "nyc report --reporter=text-lcov | coveralls",
20 "prepublish": "npm test"
21 },
22 "author": "Michael Ridgway <mcridgway@gmail.com>",
23 "license": "BSD-3-Clause",
24 "dependencies": {
25 "react-is": "^16.7.0"
26 },
27 "devDependencies": {
28 "@babel/core": "^7.5.0",
29 "@babel/plugin-proposal-class-properties": "^7.5.0",
30 "@babel/preset-env": "^7.5.0",
31 "@babel/preset-react": "^7.0.0",
32 "@babel/register": "^7.4.4",
33 "chai": "^4.2.0",
34 "coveralls": "^2.11.1",
35 "create-react-class": "^15.5.3",
36 "eslint": "^4.13.1",
37 "mocha": "^6.1.4",
38 "nyc": "^14.1.1",
39 "pre-commit": "^1.0.7",
40 "prop-types": "^15.6.2",
41 "react": "^16.7.0",
42 "rimraf": "^2.6.2",
43 "rollup": "^1.16.6",
44 "rollup-plugin-babel": "^4.3.3",
45 "rollup-plugin-commonjs": "^10.0.1",
46 "rollup-plugin-node-resolve": "^5.2.0",
47 "rollup-plugin-terser": "^5.1.1"
48 },
49 "publishConfig": {
50 "registry": "https://registry.npmjs.org/"
51 },
52 "keywords": [
53 "react"
54 ]
55}