This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.25 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
75
76
77
78
79
80
81
82
{
"name": "@jsdevtools/karma-config",
"version": "3.2.0",
"description": "Karma configuration builder with sensible defaults to minimize boilerplate",
"keywords": [
"karma",
"config",
"configuration",
"defaults",
"boilerplate",
"test",
"testing",
"browser",
"browser testing"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/karma-config",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/karma-config.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage lib",
"lint": "eslint src test",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump --tag --push --all",
"release": "npm run clean && npm run build && npm test && npm run bump"
},
"dependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@jsdevtools/host-environment": "^2.1.2",
"@jsdevtools/karma-host-environment": "^3.0.3",
"@jsdevtools/ono": "^7.1.3",
"babel-loader": "^8.2.5",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^2.1.2",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"karma-verbose-reporter": "^0.0.8",
"karma-webpack": "^4.0.2",
"webpack": "^4.43.0"
},
"devDependencies": {
"@jsdevtools/eslint-config": "^1.1.4",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/karma": "^6.3.3",
"@types/karma-webpack": "^2.0.11",
"@types/node": "^17.0.32",
"@types/webpack": "^4.41.21",
"chai": "^4.3.6",
"eslint": "^7.4.0",
"mocha": "^8.0.0",
"npm-check": "^4.1.4",
"nyc": "^15.1.0",
"package-json": "^7.0.0",
"shx": "^0.3.2",
"typescript": "^4.6.4"
},
"peerDependencies": {
"karma": ">=4",
"karma-cli": ">=2"
}
}