UNPKG

1.86 kBJSONView Raw
1{
2 "name": "hoist-non-react-statics",
3 "version": "3.1.0",
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 "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --require babel/register --reporter spec",
17 "lint": "eslint src",
18 "prebuild": "rimraf dist",
19 "build": "rollup -c",
20 "pretest": "npm run build",
21 "test": "mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec",
22 "prepublish": "npm test"
23 },
24 "author": "Michael Ridgway <mcridgway@gmail.com>",
25 "license": "BSD-3-Clause",
26 "dependencies": {
27 "react-is": "^16.3.2"
28 },
29 "peerDependencies": {
30 "react": ">=14.x"
31 },
32 "devDependencies": {
33 "babel": "^6.23.0",
34 "babel-cli": "^6.24.1",
35 "babel-plugin-transform-class-properties": "^6.24.1",
36 "babel-plugin-transform-object-rest-spread": "^6.26.0",
37 "babel-plugin-transform-react-jsx-source": "^6.22.0",
38 "babel-preset-env": "^1.7.0",
39 "babel-preset-es2015": "^6.24.1",
40 "babel-preset-react": "^6.24.1",
41 "babel-register": "^6.24.1",
42 "chai": "^4.0.1",
43 "coveralls": "^2.11.1",
44 "create-react-class": "^15.5.3",
45 "eslint": "^4.13.1",
46 "istanbul": "^0.4.5",
47 "mocha": "^3.4.2",
48 "pre-commit": "^1.0.7",
49 "prop-types": "^15.6.2",
50 "react": "^16.3.2",
51 "rimraf": "^2.6.2",
52 "rollup": "^0.52.3",
53 "rollup-plugin-babel": "^3.0.4",
54 "rollup-plugin-uglify": "^2.0.1"
55 },
56 "publishConfig": {
57 "registry": "https://registry.npmjs.org/"
58 },
59 "keywords": [
60 "react"
61 ]
62}