UNPKG

1.65 kBJSONView Raw
1{
2 "name": "hoist-non-react-statics",
3 "version": "2.5.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 "module": "src/index.js",
7 "types": "index.d.ts",
8 "repository": {
9 "type": "git",
10 "url": "git://github.com/mridgway/hoist-non-react-statics.git"
11 },
12 "files": [
13 "src",
14 "dist",
15 "index.d.ts"
16 ],
17 "scripts": {
18 "cover": "node node_modules/istanbul/lib/cli.js cover --dir artifacts -- ./node_modules/mocha/bin/_mocha tests/unit/ --recursive --compilers js:babel/register --reporter spec",
19 "lint": "eslint src",
20 "prebuild": "rimraf dist",
21 "build": "rollup -c",
22 "pretest": "npm run build",
23 "test": "mocha tests/unit/ --recursive --compilers js:babel-register --reporter spec",
24 "prepublish": "npm test"
25 },
26 "author": "Michael Ridgway <mcridgway@gmail.com>",
27 "license": "BSD-3-Clause",
28 "devDependencies": {
29 "babel": "^6.23.0",
30 "babel-cli": "^6.24.1",
31 "babel-plugin-transform-class-properties": "^6.24.1",
32 "babel-plugin-transform-react-jsx-source": "^6.22.0",
33 "babel-preset-env": "^1.6.1",
34 "babel-preset-react": "^6.24.1",
35 "babel-register": "^6.24.1",
36 "chai": "^4.0.1",
37 "coveralls": "^2.11.1",
38 "create-react-class": "^15.5.3",
39 "eslint": "^4.13.1",
40 "istanbul": "^0.4.5",
41 "mocha": "^3.4.2",
42 "pre-commit": "^1.0.7",
43 "react": "^15.0.0",
44 "rimraf": "^2.6.2",
45 "rollup": "^0.52.3",
46 "rollup-plugin-uglify": "^2.0.1"
47 },
48 "publishConfig": {
49 "registry": "https://registry.npmjs.org/"
50 },
51 "keywords": [
52 "react"
53 ]
54}