-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 897 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 897 Bytes
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
{
"name": "tscoverage",
"version": "3.0.0",
"description": "Testing Karma+Typescript with full coverage",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "karma start karma.conf.js --single-run",
"codecov": "cat coverage/chrome/lcov.info | codecov"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@types/mocha": "^10.0.1",
"chai": "^6.2.2",
"codecov": "^3.8.3",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "^5.0.1",
"mocha": "^11.3.0",
"sinon": "^21.0.1",
"sinon-chai": "^4.0.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.106.1",
"webpack-cli": "^6.0.1"
}
}