This repository was archived by the owner on Dec 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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": "@clark/eslint-plugin-import-helpers-with-package",
"version": "2.2.0",
"description": "Extends `import-helpers/order-imports` so that it can infer the name of the package the file belongs to",
"keywords": [
"eslint",
"eslint-plugin",
"eslint-plugin-import",
"order-imports",
"eslint-plugin-import-helpers",
"configurable",
"import"
],
"homepage": "https://github.com/ClarkSource/eslint-config/tree/main/eslint/plugins/import-helpers-with-package",
"bugs": {
"url": "https://github.com/ClarkSource/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClarkSource/eslint-config.git"
},
"license": "ISC",
"author": "Jan Buschtöns <[email protected]>",
"main": "index.ts.js",
"scripts": {
"build": "tsc --build --force",
"clean": "tsc --build --clean",
"lint:types": "tsc --noEmit",
"prepack": "pnpm build && pnpm patch-main-prod",
"postpack": "pnpm clean && pnpm patch-main-dev",
"patch-main-dev": "patch-json-object package.json '{ \"main\": \"index.ts.js\" }'",
"patch-main-prod": "patch-json-object package.json '{ \"main\": \"index.js\" }'"
},
"dependencies": {
"@clark/eslint-util-get-package": "^2.2.0",
"@types/eslint": "^7.28.0",
"@types/estree": "^0.0.50",
"eslint-plugin-import-helpers": "^1.1.0"
},
"devDependencies": {
"@clark/tools": "workspace:*",
"@types/node": "^16.10.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": "^12.20 || >=14.13"
},
"publishConfig": {
"access": "public"
}
}