-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.75 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "karma-tslint",
"version": "0.0.0-development",
"description": "Adapter for the Tslint, linter for the TypeScript language.",
"main": "lib/index.js",
"typeings": "lib/index.d.ts",
"files": [
"lib",
"LICENSE",
"README.md"
],
"keywords": [
"karma",
"karma-preprocessor",
"karma-tslint-preprocessor",
"karma-plugin",
"lint",
"tslint",
"typescript"
],
"author": {
"name": "Yisrael Eliav",
"email": "yisraelx@gmail.com",
"url": "https://github.com/yisraelx/karma-tslint"
},
"license": "MIT",
"homepage": "https://github.com/yisraelx/karma-tslint",
"repository": {
"type": "git",
"url": "https://github.com/yisraelx/karma-tslint.git"
},
"bugs": {
"url": "https://github.com/yisraelx/karma-tslint/issues"
},
"scripts": {
"build": "tsc",
"ci:script": "yarn verify",
"ci:release": "yarn build && semantic-release",
"clean": "rimraf lib",
"commit": "git-cz",
"lint": "tslint --project tsconfig.json --format stylish",
"verify": "run-s clean lint",
"watch": "yarn build --watch"
},
"husky": {
"hooks": {
"pre-commit": "yarn verify",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"peerDependencies": {
"tslint": "^5.15.0"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@commitlint/prompt": "^7.5.0",
"@types/node": "^11.13.4",
"commitizen": "^3.0.7",
"husky": "^1.3.1",
"log4js": "^4.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"tslint": "^5.15.0",
"typescript": "^3.4.3",
"yarn": "^1.15.2"
}
}