Skip to content

Commit

Permalink
1.0-beta3: upgrade dependencies, new build chain
Browse files Browse the repository at this point in the history
  • Loading branch information
omnidan committed Feb 24, 2016
1 parent 51b5c5d commit 26f9f07
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "redux-undo",
"version": "1.0.0-beta2",
"version": "1.0.0-beta3",
"description": "simple undo/redo functionality for redux state containers",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
"clean": "./node_modules/.bin/rimraf lib",
"compile": "./node_modules/.bin/babel src --out-dir lib",
"lint": "./node_modules/.bin/eslint src test",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive --watch",
"test:cov": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"prepublish": "npm run lint && npm run test && npm run clean && npm run compile"
},
"repository": {
"type": "git",
Expand All @@ -30,23 +30,24 @@
},
"homepage": "https://github.com/omnidan/redux-undo",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.8",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^1.10",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-react": "^3.16.1",
"eslint-plugin-standard": "^1.3.1",
"eslint": "^2.2",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^4.1.0",
"eslint-plugin-standard": "^1.3.2",
"expect": "^1.14.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.1"
"rimraf": "^2.5.2"
},
"dependencies": {
"redux": "^3.2.1"
"redux": "^3.3.1"
}
}

0 comments on commit 26f9f07

Please sign in to comment.