-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "ng-tslint",
"version": "1.1.2",
"description": "Useful TSLint rules extracted from `angular/components` for Angular libraries.",
"repository": "git+https://github.com/rx-ts/ng-tslint.git",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/rxts"
},
"author": "JounQin <[email protected]>",
"license": "MIT",
"main": "tslint.json",
"files": [
"rules",
"tslint.json",
"!rules/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -b tsconfig.rules.json",
"ci:build": "git submodule update --init --recursive && yarn build",
"docs": "ts-node scripts/extract-docs",
"format": "prettier --write .",
"prepare": "yarn-deduplicate || exit 0",
"prerelease": "npm run build",
"release": "clean-publish && changeset publish"
},
"peerDependencies": {
"tslint": "^6.0.0",
"typescript": "^4.4.4"
},
"dependencies": {
"minimatch": "^3.1.2",
"tsutils": "^3.21.0"
},
"devDependencies": {
"@1stg/prettier-config": "^1.10.1",
"@1stg/tsconfig": "^2.3.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@types/minimatch": "^3.0.5",
"@types/node": "^16.18.106",
"clean-publish": "^2.2.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^4.4.4",
"yarn-deduplicate": "^3.1.0"
},
"resolutions": {
"prettier": "^2.8.8"
},
"prettier": "@1stg/prettier-config",
"renovate": {
"extends": [
"@1stg"
]
}
}