forked from ajafff/tslint-consistent-codestyle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 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
{
"name": "tslint-consistent-codestyle",
"version": "1.13.3",
"description": "Additional rules to enforce constistent code style with tslint",
"repository": {
"type": "git",
"url": "https://github.com/ajafff/tslint-consistent-codestyle"
},
"main": "rules/index.js",
"scripts": {
"test": "tslint --test test/rules/*/*",
"precompile": "rimraf '{src,rules}/*.js'",
"compile": "tsc -p .",
"prepublishOnly": "npm run verify",
"lint:wotan": "wotan",
"lint:tslint": "wotan -m @fimbul/valtyr",
"lint": "run-p lint:*",
"verify": "run-s compile lint coverage",
"precoverage": "rimraf coverage .nyc_output",
"coverage": "nyc npm test",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"postpublish": "git push origin master --tags && npm run github-release",
"github-release": "GITHUB_TOKEN=$(cat ~/github_token.txt) github-release-from-changelog"
},
"keywords": [
"tslint",
"custom-rules",
"rules",
"stylish",
"lint",
"linting",
"linter",
"tslint-plugin"
],
"license": "MIT",
"dependencies": {
"@fimbul/bifrost": "^0.15.0",
"tslib": "^1.7.1",
"tsutils": "^2.27.0"
},
"devDependencies": {
"@fimbul/valtyr": "^0.15.0",
"@fimbul/wotan": "^0.15.0",
"coveralls": "^3.0.0",
"github-release-from-changelog": "^1.2.1",
"npm-run-all": "^4.1.1",
"nyc": "^12.0.1",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"typescript": "3.1.3"
},
"peerDependencies": {
"tslint": "^5.0.0",
"typescript": ">=2.1.4 || >=2.1.0-dev || >=2.2.0-dev || >=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >=3.1.0-dev || >=3.2.0-dev || >=3.3.0-dev"
}
}