forked from intuit/eslint-plugin-no-explicit-type-exports
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "eslint-plugin-no-explicit-type-exports",
"version": "0.11.6",
"repository": "https://github.com/intuit/eslint-plugin-no-explicit-type-exports",
"author": "Kendall Gassner [email protected]",
"contributors": [
"Kendall Gassner [email protected]"
],
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && tsc -b tsconfig.build.json",
"start": "npm run build -- --watch",
"clean": "rimraf ./dist && rimraf node_modules",
"lint": "eslint ./src --ext .js,.ts",
"test": "jest --coverage",
"release": "auto shipit -w",
"labelCheck": "auto pr-check"
},
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@typescript-eslint/experimental-utils": "^2.27.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-module-utils": "^2.4.1"
},
"peerDependencies": {
"@typescript-eslint/parser": ">= 2.27.0",
"eslint": ">= 6.x"
},
"devDependencies": {
"@types/eslint": "^6.1.2",
"@types/jest": "^24.0.18",
"@types/node": "^12.11.5",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@typescript-eslint/typescript-estree": "^2.27.0",
"auto": "^7.12.5",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"ts-jest": "^24.1.0",
"typescript": "3.8.3"
}
}