-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
{
"name": "@tapsellorg/eslint-plugin",
"version": "6.0.2",
"description": "An Eslint plugin recommended by Tapsell.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"typescript"
],
"author": "Mohammad Reza Pourmoradi <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tapsellorg/eslint-plugin/issues"
},
"homepage": "https://github.com/tapsellorg/eslint-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tapsellorg/eslint-plugin.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rm -rf dist",
"build": "tsc -b tsconfig.build.json",
"clean": "tsc -b tsconfig.build.json --clean",
"start": "tsc --watch",
"test": "mocha dist/tests --recursive --require esm --timeout 15000",
"postversion": "git push && git push --tags",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/experimental-utils": "^5.62.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/prompt": "^19.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.5",
"mocha": "^10.4.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/eslint-plugin": "^18.0.1",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-rxjs": "^5.0.3",
"eslint-plugin-sonarjs": "^0.23.0",
"eslint-plugin-unused-imports": "^3.2.0"
},
"engines": {
"node": ">=20.11.0"
}
}