forked from uhyo/eslint-plugin-import-access
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "eslint-plugin-import-access",
"version": "1.0.1",
"description": "ESLint rule for prohibiting package-private imports",
"main": "dist/index.js",
"files": [
"dist",
"!dist/__tests__"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"eslint",
"eslintplugin"
],
"author": "uhyo <uhyo@uhy.ooo>",
"repository": {
"type": "git",
"url": "https://github.com/uhyo/eslint-plugin-import-access"
},
"license": "MIT",
"dependencies": {
"@typescript-eslint/experimental-utils": "^5.9.1",
"@typescript-eslint/typescript-estree": "^5.9.1",
"tsutils": "^3.21.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"babel-jest": "^27.0.5",
"eslint": "^8.7.0",
"eslint-plugin-local-rules": "^1.1.0",
"espree": "^9.3.0",
"jest": "^27.0.5",
"prettier": "^2.3.1",
"typescript": "^4.5.4"
}
}