-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
36 lines (36 loc) · 952 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "eslint-parallel",
"version": "1.2.1",
"main": "lib/linter.js",
"description": "Tiny eslint wrapper to allow executing javascript linting in parallel.",
"author": "Alan Souza",
"homepage": "http://eslint.org",
"bugs": "https://github.com/alansouzati/eslint-parallel/issues",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/alansouzati/eslint-parallel.git"
},
"bin": {
"eslint-parallel": "./lib/cli.js"
},
"dependencies": {
"@babel/register": "^7.10.5",
"chalk": "^4.1.0",
"eslint": "^6.1.0",
"strip-ansi": "^7.0.0",
"text-table": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4"
},
"peerDependencies": {
"eslint": ">=6.1.0"
},
"scripts": {
"build": "node_modules/.bin/babel src --out-dir lib --copy-files",
"prepublishOnly": "npm run build"
}
}