-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.85 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
62
63
{
"name": "eslint-plugin-import-encapsulation",
"version": "1.0.5",
"description": "This plugin provides rules to enforce the best import path for encapsulation",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"keywords": [
"eslint",
"encapsulation",
"import"
],
"bugs": "https://github.com/sskmy1024y/eslint-plugin-import-encapsulation/issues",
"repository": {
"type": "git",
"url": "https://github.com/sskmy1024y/eslint-plugin-import-encapsulation.git"
},
"scripts": {
"build": "run-s clean build:*",
"build:lib": "vite build",
"build:type": "tsc --emitDeclarationOnly",
"lint": "run-p lint:*",
"lint:eslint": "eslint ./src --ext .ts --max-warnings=0",
"lint:prettier": "prettier --check ./src",
"fmt": "run-p fmt:*",
"fmt:eslint": "eslint ./src --ext .ts --fix",
"fmt:prettier": "prettier --write ./src",
"test": "jest",
"artifact": "yarn pack",
"clean": "rimraf dist '*.tgz'",
"deploy": "yarn build && yarn artifact && yarn publish ./eslint-plugin-import-encapsulation-*.tgz --access public"
},
"engines": {
"node": ">=14.15"
},
"author": "sho",
"license": "MIT",
"dependencies": {
"eslint": "^8.43.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/eslint": "^8.40.2",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/experimental-utils": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"app-root-path": "^3.1.0",
"espree": "^9.5.2",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"vite": "^4.3.9"
}
}