forked from angular-eslint/angular-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.61 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
{
"name": "@angular-eslint/angular-eslint",
"private": true,
"volta": {
"node": "14.16.1",
"npm": "6.14.12",
"yarn": "1.22.10"
},
"workspaces": [
"packages/*"
],
"contributors": [
"James Henry <[email protected]>"
],
"license": "MIT",
"repository": "angular-eslint/angular-eslint",
"bugs": {
"url": "https://github.com/angular-eslint/angular-eslint/issues"
},
"scripts": {
"build": "nx run-many --target=build --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"integration-tests": "nx clean integration-tests && nx spawn-and-populate-local-registry integration-tests && nx run-many --target=integration-test --all",
"update-integration-tests": "yarn integration-tests -u",
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"clean": "lerna clean && nx run-many --target=clean --all --parallel",
"cz": "git-cz",
"postinstall": "yarn build && yarn check-clean-workspace-after-install",
"check-clean-integration-test-fixtures": "tools/scripts/check-clean-integration-test-fixtures.sh",
"pre-commit": "yarn lint-staged && yarn check-clean-integration-test-fixtures",
"pre-push": "yarn check-readme-rules-list && yarn format-check",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format-check": "prettier --check \"./**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .js,.ts",
"typecheck": "nx run-many --target=typecheck --all --parallel",
"check-readme-rules-list": "ts-node --transpile-only --project tsconfig.tools.json tools/scripts/check-readme-rules-list.ts",
"update-readme-rules-list": "ts-node --transpile-only --project tsconfig.tools.json tools/scripts/update-readme-rules-list.ts",
"exec-tool": "ts-node --transpile-only --project tsconfig.tools.json tools/scripts/exec-tool.ts",
"check-configs": "nx run-many --target=check-configs --all --parallel",
"update-configs": "ts-node --transpile-only --project tsconfig.tools.json tools/scripts/generate-configs.ts",
"check-rule-docs": "nx run-many --target=check-rule-docs --all --parallel",
"update-rule-docs": "nx run-many --target=update-rule-docs --all --parallel"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@angular-devkit/architect": "0.1201.1",
"@angular-devkit/build-angular": "12.1.1",
"@angular/cli": "12.1.1",
"@angular/compiler": "12.1.1",
"@angular/compiler-cli": "12.1.1",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@nrwl/cli": "12.6.0",
"@nrwl/devkit": "12.6.0",
"@nrwl/jest": "12.6.0",
"@nrwl/nx-cloud": "12.3.0",
"@nrwl/tao": "12.6.0",
"@nrwl/workspace": "12.6.0",
"@schematics/angular": "12.0.0",
"@types/eslint": "^7.2.1",
"@types/eslint-scope": "^3.7.0",
"@types/jest": "^26.0.15",
"@types/node": "14.14.33",
"@types/prettier": "2.3.2",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"eslint": "^7.26.0",
"eslint-config-prettier": "8.1.0",
"execa": "^5.1.1",
"husky": "^3.0.0",
"jest": "27.0.3",
"json-schema-to-typescript": "^10.1.4",
"json-schema-traverse": "^1.0.0",
"lerna": "^3.14.1",
"lint-staged": "^9.2.0",
"microbundle": "0.13.3",
"ncp": "^2.0.0",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"terser": "^4.0.0",
"ts-jest": "27.0.3",
"ts-node": "^9.1.1",
"typescript": "~4.3.5"
}
}