Skip to content

Commit 26f9f07

Browse files
committed
1.0-beta3: upgrade dependencies, new build chain
1 parent 51b5c5d commit 26f9f07

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

package.json

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "redux-undo",
3-
"version": "1.0.0-beta2",
3+
"version": "1.0.0-beta3",
44
"description": "simple undo/redo functionality for redux state containers",
55
"main": "lib/index.js",
66
"scripts": {
7-
"clean": "rimraf lib",
8-
"build": "babel src --out-dir lib",
9-
"lint": "eslint src test",
10-
"test": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive",
11-
"test:watch": "NODE_ENV=test mocha --compilers js:babel-core/register --recursive --watch",
12-
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
13-
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
7+
"clean": "./node_modules/.bin/rimraf lib",
8+
"compile": "./node_modules/.bin/babel src --out-dir lib",
9+
"lint": "./node_modules/.bin/eslint src test",
10+
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive",
11+
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive --watch",
12+
"test:cov": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
13+
"prepublish": "npm run lint && npm run test && npm run clean && npm run compile"
1414
},
1515
"repository": {
1616
"type": "git",
@@ -30,23 +30,24 @@
3030
},
3131
"homepage": "https://github.com/omnidan/redux-undo",
3232
"devDependencies": {
33-
"babel": "^6.3.26",
34-
"babel-cli": "^6.4.5",
35-
"babel-core": "^6.4.5",
36-
"babel-eslint": "^4.1.8",
37-
"babel-plugin-transform-object-rest-spread": "^6.3.13",
38-
"babel-preset-es2015": "^6.3.13",
33+
"babel": "^6.5.2",
34+
"babel-cli": "^6.5.1",
35+
"babel-core": "^6.5.2",
36+
"babel-eslint": "^5.0.0",
37+
"babel-plugin-transform-object-rest-spread": "^6.5.0",
38+
"babel-preset-es2015": "^6.5.0",
3939
"chai": "^3.5.0",
40-
"eslint": "^1.10",
41-
"eslint-config-standard": "^4.4.0",
42-
"eslint-plugin-react": "^3.16.1",
43-
"eslint-plugin-standard": "^1.3.1",
40+
"eslint": "^2.2",
41+
"eslint-config-standard": "^5.1.0",
42+
"eslint-plugin-promise": "^1.0.8",
43+
"eslint-plugin-react": "^4.1.0",
44+
"eslint-plugin-standard": "^1.3.2",
4445
"expect": "^1.14.0",
4546
"isparta": "^4.0.0",
4647
"mocha": "^2.4.5",
47-
"rimraf": "^2.5.1"
48+
"rimraf": "^2.5.2"
4849
},
4950
"dependencies": {
50-
"redux": "^3.2.1"
51+
"redux": "^3.3.1"
5152
}
5253
}

0 commit comments

Comments
 (0)