mirror of https://gitee.com/antv-l7/antv-l7
72 lines
2.0 KiB
JSON
72 lines
2.0 KiB
JSON
{
|
|
"name": "react-side-effect",
|
|
"version": "1.2.0",
|
|
"description": "Create components whose prop changes map to a global side effect",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "node scripts/build.js",
|
|
"clean": "rimraf lib",
|
|
"prepare": "npm test && npm run clean && npm run build",
|
|
"test": "mocha",
|
|
"test:watch": "mocha --watch",
|
|
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/gaearon/react-side-effect.git"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"component",
|
|
"side",
|
|
"effect"
|
|
],
|
|
"author": "Dan Abramov <dan.abramov@me.com> (http://github.com/gaearon)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/gaearon/react-side-effect/issues"
|
|
},
|
|
"homepage": "https://github.com/gaearon/react-side-effect",
|
|
"contributors": [
|
|
"Louis DeScioli (https://descioli.design)"
|
|
],
|
|
"peerDependencies": {
|
|
"react": "^0.13.0 || ^0.14.0 || ^15.0.0 || ^16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"shallowequal": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "7.0.0",
|
|
"@babel/core": "7.0.0",
|
|
"@babel/node": "7.0.0",
|
|
"@babel/plugin-proposal-class-properties": "7.0.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
|
|
"@babel/preset-env": "7.0.0",
|
|
"@babel/preset-react": "7.0.0",
|
|
"@babel/register": "7.0.0",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"chai": "^3.2.0",
|
|
"enzyme": "^2.7.0",
|
|
"gzip-size": "^4.1.0",
|
|
"isparta": "^4.0.0",
|
|
"jsdom": "^9.9.1",
|
|
"mocha": "^3.2.0",
|
|
"pretty-bytes": "^4.0.2",
|
|
"react": "^15.4.2",
|
|
"react-addons-test-utils": "^15.4.2",
|
|
"react-dom": "^15.4.2",
|
|
"rimraf": "^2.4.3",
|
|
"rollup": "^1.20.3",
|
|
"rollup-plugin-babel": "^4.0.0",
|
|
"rollup-plugin-commonjs": "^8.3.0",
|
|
"rollup-plugin-node-resolve": "^3.0.3",
|
|
"rollup-plugin-uglify": "^3.0.0"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"lib/"
|
|
]
|
|
}
|