This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "karma-tsc-preprocessor",
"version": "1.0.0",
"description": "A karma-runner plugin to compile typescript files",
"license": "MIT",
"homepage": "https://github.com/jamcoupe/karma-tsc-preprocessor",
"repository": {
"type": "git",
"url": "[email protected]:jamcoupe/karma-tsc-preprocessor.git"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | codacy-coverage",
"test:integration": "node integration/run"
},
"keywords": [
"karma-plugin",
"karma-preprocessor",
"typescript"
],
"peerDependencies": {
"typescript": ">= 2.0.0"
},
"main": "index.js",
"author": "Jamie Couperwhite <[email protected]>",
"contributors": [
{
"name": "Jamie Couperwhite",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 8.16.0"
},
"devDependencies": {
"@types/jest": "24.0.15",
"@typescript-eslint/eslint-plugin": "1.12.0",
"@typescript-eslint/parser": "1.12.0",
"codacy-coverage": "3.4.0",
"eslint": "6.0.1",
"eslint-config-standard": "13.0.1",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"fs-extra": "8.1.0",
"jasmine": "3.4.0",
"jasmine-core": "3.4.0",
"jest": "24.8.0",
"remark-cli": "6.0.1",
"remark-preset-lint-recommended": "3.0.3",
"karma": "4.2.0",
"karma-chrome-launcher": "2.2.0",
"karma-commonjs": "1.0.0",
"karma-jasmine": "2.0.1",
"remark-lint": "6.0.5",
"typescript": "3.5.3"
}
}