forked from angular-eslint/angular-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.21 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.21 KB
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
{
"name": "@angular-eslint/angular-eslint",
"private": true,
"workspaces": [
"packages/*"
],
"contributors": [
"James Henry <angular-eslint@jameshenry.email>"
],
"license": "MIT",
"repository": "angular-eslint/angular-eslint",
"bugs": {
"url": "https://github.com/angular-eslint/angular-eslint/issues"
},
"scripts": {
"build": "lerna run build",
"test": "lerna run test --parallel",
"integration-tests": "lerna run integration-tests",
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"clean": "lerna clean && lerna run clean",
"cz": "git-cz",
"postinstall": "node ./tools/scripts/apply-patched-microbundle.js && lerna bootstrap && yarn build && lerna link && npm run check-clean-workspace-after-install",
"pre-commit": "yarn lint-staged",
"pre-push": "yarn check-readme && yarn format-check",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format-check": "prettier --check \"./**/*.{ts,js,json,md}\"",
"typecheck": "lerna run typecheck",
"check-readme": "yarn exec-tool check-readme",
"update-readme": "yarn exec-tool update-readme",
"exec-tool": "ts-node --files --transpile-only --project tsconfig.tools.json -r tsconfig-paths/register tools/scripts/exec-tool.ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.2",
"@angular/compiler": "~9.0.1",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/eslint": "^4.16.6",
"@types/eslint-scope": "^3.7.0",
"@types/jest": "^24.0.13",
"@types/json-schema": "^7.0.3",
"@types/node": "^10.12.2",
"@types/prettier": "^1.19.0",
"@typescript-eslint/parser": "2.19.2",
"eslint": "^6.8.0",
"execa": "^3.4.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"lint-staged": "^9.2.0",
"microbundle": "0.11.0",
"prettier": "^1.19.1",
"terser": "^4.0.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.6.2",
"tsconfig-paths": "^3.9.0",
"typescript": "~3.7.5"
}
}