forked from TrySound/rollup-plugin-eslint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 941 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
37
38
39
40
41
42
43
44
45
{
"name": "rollup-plugin-eslint",
"version": "7.0.0",
"description": "Verify entry point and all imported files with ESLint",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "jest",
"prepublish": "yarn test",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,md}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrySound/rollup-plugin-eslint.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"es2015",
"eslint",
"lint"
],
"author": "Bogdan Chadkin <[email protected]>",
"license": "MIT",
"devDependencies": {
"husky": "^2.3.0",
"jest": "^24.8.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"rollup": "^1.12.3",
"rollup-plugin-node-resolve": "^5.0.0"
},
"dependencies": {
"eslint": "^6.0.0",
"rollup-pluginutils": "^2.7.1"
}
}