-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.65 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@knodes/eslint-config",
"version": "1.6.5",
"description": "ESLint rules & presets for Knodes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/KnodesCommunity/eslint-config.git"
},
"bugs": {
"url": "https://github.com/KnodesCommunity/eslint-config/issues"
},
"homepage": "https://github.com/KnodesCommunity/eslint-config#readme",
"author": "GerkinDev",
"keywords": [
"eslint"
],
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "tsc -p ./tsconfig.json",
"build:watch": "npm run build -- --watch",
"format:pkg": "format-package --write",
"lint": "eslint --config .eslintrc.js '{,{src,test}/**/}*.{j,t}s'",
"lint:commit-message:current": "commitlint -E HUSKY_GIT_PARAMS",
"lint:fix": "npm run lint -- --fix",
"precommit": "npm run build && npm run lint && npm run test",
"prepare": "husky install && npm run build",
"release": "standard-version",
"test": "jest",
"test:ci": "JEST_JUNIT_OUTPUT_NAME=junit.xml jest --config jest.config.ci.js --all --ci --reporters=default --reporters=jest-junit",
"test:ci:coverage": "npm run test:ci -- --collectCoverage",
"test:watch": "npm run test -- --watch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"exports": {
"./*": "./dist/config/*.js",
"./fragments/*": "./dist/config-fragments/*.js"
},
"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
},
"@typescript-eslint/eslint-plugin": {
"optional": true
},
"@typescript-eslint/parser": {
"optional": true
},
"eslint-plugin-rxjs": {
"optional": true
}
},
"peerDependencies": {
"@angular-eslint/eslint-plugin": "^13.0.0",
"@angular-eslint/eslint-plugin-template": "^13.0.0",
"@angular-eslint/template-parser": "^13.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-plugin-eslint-comments": "^3.0.0",
"eslint-plugin-import": "^2.25.0",
"eslint-plugin-jsdoc": "^39.0.0",
"eslint-plugin-prefer-arrow": "^1.0.0",
"eslint-plugin-rxjs": "^5.0.0",
"eslint-plugin-sort-export-all": "^1.0.0"
},
"devDependencies": {
"@angular-eslint/eslint-plugin": "^13.2.1",
"@angular-eslint/eslint-plugin-template": "^13.2.1",
"@angular-eslint/template-parser": "^13.2.1",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/eslint": "^8.4.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-jest": "^27.5.1",
"eslint": "^8.14.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-sort-export-all": "^1.2.2",
"format-package": "^7.0.0",
"fs-extra": "^10.1.0",
"globby": "^13.1.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-junit": "^13.2.0",
"jest-node-exports-resolver": "^1.1.6",
"nanoid": "^3.3.3",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}