This commit is contained in:
Nathan Bierema 2020-08-06 14:48:42 -04:00
parent c5a22c3026
commit a24bf3a4c1
2 changed files with 13 additions and 22 deletions

View File

@ -7,7 +7,7 @@
"clean": "rimraf lib", "clean": "rimraf lib",
"build": "babel src --out-dir lib", "build": "babel src --out-dir lib",
"prepare": "npm run build", "prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run clean && npm run build" "prepublishOnly": "npm run clean && npm run build"
}, },
"files": [ "files": [
"lib", "lib",

View File

@ -10,10 +10,9 @@
"scripts": { "scripts": {
"clean": "rimraf lib", "clean": "rimraf lib",
"build": "babel src --out-dir lib", "build": "babel src --out-dir lib",
"lint": "eslint src test", "test": "jest",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive", "prepare": "npm run build",
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch", "prepublishOnly": "npm run test && npm run clean && npm run build"
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -35,30 +34,22 @@
}, },
"homepage": "https://github.com/reduxjs/redux-devtools", "homepage": "https://github.com/reduxjs/redux-devtools",
"devDependencies": { "devDependencies": {
"babel-cli": "^6.3.15", "@babel/cli": "^7.10.5",
"babel-core": "^6.1.20", "@babel/core": "^7.11.0",
"babel-eslint": "^5.0.0-beta4", "@babel/plugin-proposal-class-properties": "^7.10.4",
"babel-loader": "^6.2.0", "@babel/preset-env": "^7.11.0",
"babel-preset-es2015-loose": "^6.1.3", "@babel/preset-react": "^7.10.4",
"babel-preset-react": "^6.3.13", "babel-loader": "^8.1.0",
"babel-preset-stage-0": "^6.3.13", "rimraf": "^2.7.1"
"eslint": "^0.23",
"eslint-config-airbnb": "0.0.6",
"eslint-plugin-react": "^3.6.3",
"expect": "^1.6.0",
"mocha": "^2.2.5",
"mocha-jsdom": "^1.0.0",
"rimraf": "^2.3.4",
"webpack": "^1.11.0"
}, },
"peerDependencies": { "peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0", "react": "^0.14.9 || ^15.3.0 || ^16.0.0",
"redux-devtools": "^3.4.0" "redux-devtools": "^3.4.0"
}, },
"dependencies": { "dependencies": {
"babel-runtime": "^6.2.0", "babel-runtime": "^6.26.0",
"parse-key": "^0.2.1", "parse-key": "^0.2.1",
"prop-types": "^15.5.8", "prop-types": "^15.7.2",
"react-dock": "^0.2.4", "react-dock": "^0.2.4",
"react-pure-render": "^1.0.2" "react-pure-render": "^1.0.2"
} }