forked from stencil-community/stencil-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.48 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@d0whc3r/eslint-plugin-stencil",
"version": "0.7.0",
"description": "ESLint rules specific to Stencil JS projects.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"stencil",
"stencileslint",
"stencil eslint"
],
"main": "dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"build": "tsc -p . && rollup -c",
"test": "jest --coverage",
"version": "npm run build",
"release": "np"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-utils": "^2.0.0",
"tsutils": "^3.17.1"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/eslint": "^6.8.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.5.1",
"eslint-plugin-react": "^7.19.0",
"eslint-utils": "^2.0.0",
"jest": "^25.5.0",
"jest-cli": "^25.5.0",
"np": "^6.2.3",
"rollup": "^2.7.3",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.0"
},
"engines": {
"node": ">=8.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/d0whc3r/stencil-eslint.git"
},
"license": "MIT"
}