Skip to content

Commit b356ca9

Browse files
authored
Merge pull request #18 from pgAdmin/master
Upgrade to support ESlint 6.x
2 parents 088bfcd + 77f0f80 commit b356ca9

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-parallel",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"main": "lib/linter.js",
55
"description": "Tiny eslint wrapper to allow executing javascript linting in parallel.",
66
"author": "Alan Souza",
@@ -15,20 +15,21 @@
1515
"eslint-parallel": "./lib/cli.js"
1616
},
1717
"dependencies": {
18-
"babel-core": "^6.20.0",
18+
"babel-core": "^6.26.0",
1919
"chalk": "^1.1.3",
20-
"eslint": "^5.0.0",
20+
"eslint": "^6.1.0",
2121
"text-table": "^0.2.0"
2222
},
2323
"devDependencies": {
24-
"babel-cli": "^6.11.4",
25-
"babel-eslint": "^6.1.2",
24+
"babel-cli": "^6.26.0",
25+
"babel-eslint": "^10.0.3",
2626
"babel-preset-es2015": "^6.9.0"
2727
},
2828
"peerDependencies": {
29-
"eslint": ">=5.0.0"
29+
"eslint": ">=6.1.0"
3030
},
3131
"scripts": {
32+
"postinstall": "node_modules/.bin/babel src --out-dir lib --copy-files --loose-mode",
3233
"build": "node_modules/.bin/babel src --out-dir lib --copy-files --loose-mode",
3334
"prepublishOnly": "npm run build"
3435
}

0 commit comments

Comments
 (0)