forked from tkqubo/codeclimate-tslint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.16 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "codeclimate-tslint",
"version": "0.16.1",
"description": "Code Climate TSLint-Engine for TypeScript",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rfv dist",
"build": "npm run clean && tsc",
"build:watch": "tsc --watch",
"start": "npm run build && npm run docker",
"docker": "npm run docker:build && npm run docker:run",
"docker:build": "docker build --rm -t codeclimate/codeclimate-tslint .",
"docker:run": "docker run -v $(pwd):/code codeclimate/codeclimate-tslint",
"codeclimate": "npm run docker:build && npm run codeclimate:run",
"codeclimate:run": "codeclimate analyze --dev",
"test": "npm run test:mocha",
"test:watch": "npm run mocha -- --watch --watch-extensions ts",
"test:mocha": "nyc mocha src/test/*.spec.ts",
"mocha": "mocha --require ts-node/register src/test/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkqubo/codeclimate-tslint.git"
},
"keywords": [
"TypeScript",
"tslint",
"codeclimate",
"Code Climate"
],
"author": "tkqubo",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkqubo/codeclimate-tslint/issues"
},
"homepage": "https://github.com/tkqubo/codeclimate-tslint#readme",
"devDependencies": {
"@angular/common": "^8.0.1",
"@angular/compiler": "^8.0.1",
"@angular/core": "^8.0.1",
"@angular/platform-browser": "^8.0.1",
"@angular/platform-browser-dynamic": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/lodash": "^4.14.134",
"@types/mocha": "^5.2.7",
"@types/mock-fs": "^3.6.30",
"@types/node": "^12.0.8",
"@types/power-assert": "^1.5.0",
"@types/power-assert-formatter": "^1.4.28",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^7.0.13",
"@types/strip-json-comments": "0.0.30",
"istanbul": "^0.4.5",
"js-yaml": "^3.13.1",
"mocha": "^6.1.4",
"mock-fs": "^4.10.1",
"nyc": "^14.1.1",
"power-assert": "^1.6.1",
"proxyquire": "^2.1.0",
"sinon": "^7.3.2",
"ts-node": "^8.3.0",
"tslint-config-security": "^1.16.0",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.5.2",
"zone.js": "~0.9.1"
},
"dependencies": {
"@kushki/tslint": "^5.2.12",
"@types/js-yaml": "^3.12.1",
"autobind-decorator": "^2.4.0",
"codelyzer": "^5.1.0",
"glob": "^7.1.4",
"handlebars": "^4.1.2",
"lodash": "^4.17.11",
"prettier": "^1.18.2",
"rxjs": "^6.5.2",
"strip-json-comments": "^3.0.1",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"tslint-no-circular-imports": "^0.7.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.1.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}