forked from angular-eslint/angular-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "@angular-eslint/angular-eslint",
"private": true,
"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": "lerna run build",
"test": "lerna run test --parallel",
"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 format-check",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format-check": "prettier --list-different \"./**/*.{ts,js,json,md}\"",
"typecheck": "lerna run typecheck"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.800.0",
"@angular/compiler": "^8.0.2",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/eslint": "^4.16.6",
"@types/jest": "^24.0.13",
"@types/json-schema": "^7.0.3",
"@types/node": "^10.12.2",
"@typescript-eslint/parser": "2.0.0-alpha.4",
"eslint": "^6.1.0",
"husky": "^3.0.0",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"lint-staged": "^9.2.0",
"microbundle": "0.11.0",
"prettier": "^1.17.1",
"terser": "^4.0.0",
"ts-jest": "^24.0.2",
"typescript": "~3.5.3"
}
}