-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.13 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
{
"name": "@angular-extensions/lint-rules",
"version": "1.2.1",
"description": "tslint rules for angular projects",
"main": "lint-rules.json",
"scripts": {
"build": "tsc && cpy ./package.json ./dist/ && cpy ./lint-rules.json ./dist/ && cpy ./README.md ./dist/",
"test": "npm run build && tslint --test test/rules/**/tslint.json",
"publish-package": "standard-version && npm run build && replace-in-file --configFile=buildscripts/replace-config.json && npm publish dist && git push --follow-tags"
},
"author": "Esteban Gehring, Bithost GmbH",
"repository": {
"url": "https://github.com/angular-extensions/lint-rules"
},
"bugs": {
"url": "https://github.com/angular-extensions/lint-rules/issues"
},
"license": "MIT",
"peerDependencies": {
"tslint": "5.* || 6.*",
"typescript": "^3.0.0 || ^4.0.0"
},
"private": true,
"devDependencies": {
"cpy-cli": "^4.2.0",
"replace-in-file": "^5.0.2",
"rxjs": "^6.5.3",
"standard-version": "^9.5.0",
"tslint": "^5.9.1",
"typescript": "~3.7.2"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^4.0.0",
"tsutils-etc": "^1.1.0"
}
}