-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.84 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
{
"name": "@terminus/eslint-config-frontend",
"version": "0.0.0-PLACEHOLDER",
"description": "Terminus Lint configurations.",
"homepage": "https://github.com/GetTerminus/eslint-config-frontend",
"keywords": [
"eslint",
"eslintconfig"
],
"repository": {
"type": "git",
"url": "https://github.com/GetTerminus/eslint-config-frontend.git"
},
"bugs": {
"url": "https://github.com/GetTerminus/eslint-config-frontend/issues"
},
"main": "rules.js",
"scripts": {
"//=> Section: Linting": "==============================",
"lint": "npx eslint rules.js .eslintrc.js --no-ignore",
"lint:fix": "npx eslint rules.js .eslintrc.js --no-ignore --fix",
"lint:ci": "yarn run lint",
"//=> Section: Release": "==============================",
"semantic-release": "semantic-release",
"check:next-release": "npx semantic-release --no-ci --dry-run",
"//=> Section: Tooling": "==============================",
"docs": "yarn run docs:toc",
"docs:toc": "npx doctoc --title '**Table of Contents**' --maxlevel 3 README.md",
"lint-staged": "lint-staged",
"validate:circleci": "circleci config validate -c .circleci/config.yml",
"cm": "npx git-cz",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate",
"contributors:check": "npx all-contributors check"
},
"author": "Terminus",
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
},
"config": {
"loglevel": "warn",
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./tooling/cz-config.js"
}
},
"lint-staged": {
"*.js": [
"yarn run lint"
]
},
"publishConfig": {
"tag": "next",
"access": "public"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0",
"yarn": ">= 1.0.0"
},
"dependencies": {
"@angular-eslint/eslint-plugin": "0.0.1-alpha.27",
"@angular-eslint/eslint-plugin-template": "0.0.1-alpha.27",
"@angular-eslint/template-parser": "0.0.1-alpha.27",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.27.0"
},
"peerDependencies": {
"@angular/compiler": ">=9.1.0",
"@angular/core": ">=9.1.0",
"eslint": "^6.8.0",
"typescript": "3.8.3"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.5",
"@semantic-release/npm": "7.0.5",
"@semantic-release/release-notes-generator": "9.0.1",
"condition-circle": "2.0.2",
"cz-customizable": "6.2.0",
"doctoc": "1.4.0",
"eslint": "6.8.0",
"husky": "4.2.5",
"lint-staged": "10.1.3",
"semantic-release": "17.0.4",
"typescript": "3.8.3",
"validate-commit-msg": "2.14.0"
}
}