-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
57 lines (57 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
{
"name": "tslint-consistent-codestyle",
"version": "1.16.0",
"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.21.0",
"tslib": "^1.7.1",
"tsutils": "^2.29.0"
},
"devDependencies": {
"@fimbul/mithotyn": "^0.21.0",
"@fimbul/valtyr": "^0.21.0",
"@fimbul/wotan": "^0.21.1",
"coveralls": "^3.0.0",
"github-release-from-changelog": "^2.0.0",
"npm-run-all": "^4.1.1",
"nyc": "^13.2.0",
"rimraf": "^3.0.0",
"tslint": "^5.8.0",
"typescript": "3.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 || >=3.4.0-dev"
}
}