This repository has been archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"name": "custom-tslint-rules",
"version": "3.0.0",
"description": "Custom rules for tslint",
"main": "tslint.json",
"scripts": {
"build": "tsc --outDir ./dist",
"build:clean": "npm run clean && npm run build",
"ci": "npm run cover && npm run coveralls && npm run lint",
"clean": "rimraf dist coverage",
"coveralls": "cat coverage/lcov.info | coveralls",
"precover": "npm run build:clean",
"cover": "istanbul cover --root ./dist --dir ./coverage runTests.js -- -b ./dist -c ./coverage && istanbul report --dir ./coverage",
"dist": "npm run clean && npm test && npm run lint && rimraf dist/tests",
"lint": "tslint 'src/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"prepublish": "npm run dist",
"pretest": "npm run build",
"test": "node runTests.js -b ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BendingBender/tslint-rules.git"
},
"keywords": [
"tslint",
"typescript"
],
"author": "Dimitri Benin",
"license": "MIT",
"bugs": {
"url": "https://github.com/BendingBender/tslint-rules/issues"
},
"homepage": "https://github.com/BendingBender/tslint-rules#readme",
"dependencies": {
"lodash": "^4.17.3"
},
"devDependencies": {
"@types/lodash": "^4.14.64",
"@types/node": "^8.0.3",
"coveralls": "^2.13.1",
"glob": "^7.1.1",
"istanbul": "^0.4.5",
"rimraf": "^2.6.1",
"tslint": "^5.2.0",
"tslint-microsoft-contrib": "^5.0.0",
"typescript": "~2.4.1",
"yargs": "^8.0.1"
},
"peerDependencies": {
"tslint": "^5.0.0"
},
"engines": {
"node": ">=4"
}
}