-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 2.11 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
64
65
66
{
"name": "eslint-plugin-import-access",
"version": "2.2.2",
"description": "ESLint rule for prohibiting package-private imports",
"main": "dist/index.js",
"exports": {
"./ts-plugin": "./dist/ts-plugin.js",
"./flat-config": {
"import": "./dist/flat-config.mjs",
"require": "./dist/flat-config.cjs",
"default": "./dist/flat-config.cjs"
},
".": "./dist/index.js"
},
"files": [
"dist",
"!dist/__tests__"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"test": "tsc -p src/__tests__/fixtures/project/tsconfig.json --noEmit && jest",
"test:watch": "jest --watch"
},
"keywords": [
"eslint",
"eslintplugin"
],
"author": "uhyo <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/uhyo/eslint-plugin-import-access"
},
"license": "MIT",
"dependencies": {
"@typescript-eslint/utils": "^8.4.0",
"tsutils": "^3.21.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@fixture-package-third-party/has-sub-module": "file:src/__tests__/fixtures/packages/third-party/has-sub-module",
"@fixture-package-third-party/missing-entrypoint": "file:src/__tests__/fixtures/packages/third-party/missing-entrypoint",
"@fixture-package-third-party/with-exports-field": "file:src/__tests__/fixtures/packages/third-party/with-exports-field",
"@fixture-package-workspace/has-sub-module": "*",
"@fixture-package-workspace/missing-entrypoint": "*",
"@fixture-package-workspace/with-exports-field": "*",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@typescript-eslint/typescript-estree": "^8.4.0",
"babel-jest": "^29.6.1",
"eslint": "^8.7.0",
"eslint-plugin-local-rules": "^3.0.2",
"espree": "^10.0.1",
"jest": "^29.6.1",
"prettier": "^3.2.5",
"typescript": "^5.1.6",
"typescript-eslint": "^8.4.0"
},
"workspaces": [
"src/__tests__/fixtures/packages/workspaces/*"
]
}