1 | {
|
2 | "name": "rollup-plugin-eslint",
|
3 | "version": "7.0.0",
|
4 | "description": "Verify entry point and all imported files with ESLint",
|
5 | "main": "index.js",
|
6 | "files": [
|
7 | "index.js"
|
8 | ],
|
9 | "scripts": {
|
10 | "test": "jest",
|
11 | "prepublish": "yarn test",
|
12 | "precommit": "lint-staged"
|
13 | },
|
14 | "lint-staged": {
|
15 | "*.{js,md}": [
|
16 | "prettier --write",
|
17 | "git add"
|
18 | ]
|
19 | },
|
20 | "repository": {
|
21 | "type": "git",
|
22 | "url": "git+https://github.com/TrySound/rollup-plugin-eslint.git"
|
23 | },
|
24 | "keywords": [
|
25 | "rollup",
|
26 | "rollup-plugin",
|
27 | "es2015",
|
28 | "eslint",
|
29 | "lint"
|
30 | ],
|
31 | "author": "Bogdan Chadkin <trysound@yandex.ru>",
|
32 | "license": "MIT",
|
33 | "devDependencies": {
|
34 | "husky": "^2.3.0",
|
35 | "jest": "^24.8.0",
|
36 | "lint-staged": "^8.1.7",
|
37 | "prettier": "^1.17.1",
|
38 | "rollup": "^1.12.3",
|
39 | "rollup-plugin-node-resolve": "^5.0.0"
|
40 | },
|
41 | "dependencies": {
|
42 | "eslint": "^6.0.0",
|
43 | "rollup-pluginutils": "^2.7.1"
|
44 | }
|
45 | }
|