1 | {
|
2 | "name": "karma-typescript",
|
3 | "version": "5.5.4",
|
4 | "description": "Simplifying running unit tests with coverage for Typescript projects.",
|
5 | "files": [
|
6 | "dist/**",
|
7 | "cookbook.md"
|
8 | ],
|
9 | "main": "dist/index.js",
|
10 | "types": "./dist/api/index.d.ts",
|
11 | "keywords": [
|
12 | "angularjs",
|
13 | "angular2",
|
14 | "browserify",
|
15 | "commonjs",
|
16 | "coverage",
|
17 | "css modules",
|
18 | "docker",
|
19 | "istanbul",
|
20 | "jasmine",
|
21 | "karma",
|
22 | "karma plugin",
|
23 | "karma-plugin",
|
24 | "mocha",
|
25 | "postcss",
|
26 | "react",
|
27 | "remap",
|
28 | "transpile",
|
29 | "typescript",
|
30 | "unit test"
|
31 | ],
|
32 | "author": "monounity",
|
33 | "contributors": [
|
34 | "erikbarke",
|
35 | "mitchhentges",
|
36 | "Hobart2967",
|
37 | "xdamman",
|
38 | "devoto13",
|
39 | "sir-marc",
|
40 | "cleavera",
|
41 | "abraham",
|
42 | "adamkasztenny",
|
43 | "wawyed",
|
44 | "jods4",
|
45 | "alan-agius4",
|
46 | "FreshRob",
|
47 | "glennvorhes",
|
48 | "fchiumeo",
|
49 | "moshmage",
|
50 | "tokrsen",
|
51 | "g00fy-",
|
52 | "kubut",
|
53 | "VilleSalonen",
|
54 | "yugi03",
|
55 | "gempain",
|
56 | "monounity",
|
57 | "ggradnig",
|
58 | "sridharmallela",
|
59 | "leevipietilainen",
|
60 | "vladjerca",
|
61 | "csvn",
|
62 | "ryanvall"
|
63 | ],
|
64 | "repository": {
|
65 | "type": "git",
|
66 | "url": "https://github.com/monounity/karma-typescript.git"
|
67 | },
|
68 | "license": "MIT",
|
69 | "scripts": {
|
70 | "lint": "eslint . --ext .ts",
|
71 | "build": "tsc --rootDir ./src",
|
72 | "test": "nyc --require ts-node/register tape \"src/**/*.spec.ts\" | faucet"
|
73 | },
|
74 | "nyc": {
|
75 | "extension": [
|
76 | ".ts"
|
77 | ],
|
78 | "exclude": [
|
79 | "**/*.spec.ts"
|
80 | ],
|
81 | "reporter": [
|
82 | "html"
|
83 | ],
|
84 | "tempDir": "./coverage/.nyc_output"
|
85 | },
|
86 | "dependencies": {
|
87 | "acorn": "^8.1.0",
|
88 | "acorn-walk": "^8.0.2",
|
89 | "assert": "^2.0.0",
|
90 | "async": "^3.0.1",
|
91 | "browser-resolve": "^2.0.0",
|
92 | "browserify-zlib": "^0.2.0",
|
93 | "buffer": "^5.4.3",
|
94 | "combine-source-map": "^0.8.0",
|
95 | "console-browserify": "^1.2.0",
|
96 | "constants-browserify": "^1.0.0",
|
97 | "convert-source-map": "^1.7.0",
|
98 | "crypto-browserify": "^3.12.0",
|
99 | "diff": "^4.0.1",
|
100 | "domain-browser": "^4.16.0",
|
101 | "events": "^3.2.0",
|
102 | "glob": "^7.1.6",
|
103 | "https-browserify": "^1.0.0",
|
104 | "istanbul-lib-coverage": "^3.0.0",
|
105 | "istanbul-lib-instrument": "^4.0.0",
|
106 | "istanbul-lib-report": "^3.0.0",
|
107 | "istanbul-lib-source-maps": "^4.0.0",
|
108 | "istanbul-reports": "^3.0.0",
|
109 | "json-stringify-safe": "^5.0.1",
|
110 | "lodash": "^4.17.19",
|
111 | "log4js": "^6.3.0",
|
112 | "minimatch": "^3.0.4",
|
113 | "os-browserify": "^0.3.0",
|
114 | "pad": "^3.2.0",
|
115 | "path-browserify": "^1.0.0",
|
116 | "process": "^0.11.10",
|
117 | "punycode": "^2.1.1",
|
118 | "querystring-es3": "^0.2.1",
|
119 | "readable-stream": "^3.1.1",
|
120 | "source-map": "^0.7.3",
|
121 | "stream-browserify": "^3.0.0",
|
122 | "stream-http": "^3.1.0",
|
123 | "string_decoder": "^1.3.0",
|
124 | "timers-browserify": "^2.0.11",
|
125 | "tmp": "^0.2.1",
|
126 | "tty-browserify": "^0.0.1",
|
127 | "url": "^0.11.0",
|
128 | "util": "^0.12.1",
|
129 | "vm-browserify": "^1.1.2"
|
130 | },
|
131 | "devDependencies": {
|
132 | "@types/async": "^3.0.3",
|
133 | "@types/browser-resolve": "^1.11.0",
|
134 | "@types/combine-source-map": "^0.8.1",
|
135 | "@types/convert-source-map": "^1.5.1",
|
136 | "@types/diff": "^4.0.2",
|
137 | "@types/glob": "^7.1.3",
|
138 | "@types/istanbul-lib-coverage": "^2.0.3",
|
139 | "@types/istanbul-lib-instrument": "^1.7.3",
|
140 | "@types/istanbul-lib-report": "^3.0.0",
|
141 | "@types/istanbul-lib-source-maps": "^4.0.0",
|
142 | "@types/istanbul-reports": "^3.0.0",
|
143 | "@types/karma": "^6.1.0",
|
144 | "@types/lodash": "^4.14.159",
|
145 | "@types/minimatch": "^3.0.3",
|
146 | "@types/mock-require": "^2.0.0",
|
147 | "@types/node": "^14.0.27",
|
148 | "@types/pad": "^2.1.0",
|
149 | "@types/tape": "^4.13.0",
|
150 | "@types/tmp": "^0.2.0",
|
151 | "faucet": "0.0.1",
|
152 | "mock-require": "^3.0.3",
|
153 | "nyc": "^15.1.0",
|
154 | "puppeteer": "^5.2.1",
|
155 | "tape": "^5.0.1",
|
156 | "ts-node": "^8.10.2",
|
157 | "typescript": "latest"
|
158 | },
|
159 | "peerDependencies": {
|
160 | "karma": "1 || 2 || 3 || 4 || 5 || 6",
|
161 | "typescript": "1 || 2 || 3 || 4 || 5"
|
162 | }
|
163 | }
|