-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.22 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
67
68
69
70
71
72
73
74
{
"name": "@shiftcode/eslint-config-recommended",
"version": "2.0.1",
"description": "default shiftcode config for eslint",
"repository": "https://github.com/shiftcode/sc-commons-public",
"license": "UNLICENSED",
"author": "shiftcode GmbH <[email protected]>",
"sideEffects": false,
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./ng-config": {
"types": "./dist/ng-config/index.d.ts",
"default": "./dist/ng-config/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc",
"build:lint:ci": "npm run build",
"lint": "npm run lint:src:fix",
"lint:ci": "npm run lint:src",
"lint:src": "eslint ./src",
"lint:src:fix": "eslint ./src --cache --fix",
"lint:staged": "eslint --fix --cache",
"prettier": "prettier --write --config ../../.prettierrc.yml '{src,e2e,test}/**/*.ts'",
"prettier:staged": "prettier --write --config ../../.prettierrc.yml",
"prepublish": "node ../publish-helper/dist/prepare-dist.js",
"test": "echo 'Error: no test specificed'",
"test:ci": "npm run test"
},
"dependencies": {
"@shiftcode/eslint-plugin-rules": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-unused-imports": "^3.2.0"
},
"peerDependencies": {
"@angular-eslint/builder": "^18.0.0",
"@angular-eslint/eslint-plugin": "^18.0.0",
"@angular-eslint/eslint-plugin-template": "^18.0.0",
"@angular-eslint/schematics": "^18.0.0",
"@angular-eslint/template-parser": "^18.0.0"
},
"peerDependenciesMeta": {
"@angular-eslint/builder": {
"optional": true
},
"@angular-eslint/eslint-plugin": {
"optional": true
},
"@angular-eslint/eslint-plugin-template": {
"optional": true
},
"@angular-eslint/schematics": {
"optional": true
},
"@angular-eslint/template-parser": {
"optional": true
}
},
"publishConfig": {
"directory": "dist"
}
}