forked from demerzel3/karma-sourcemap-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.1 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
{
"name": "@prantlf/karma-sourcemap-loader",
"version": "1.1.0",
"description": "Karma plugin that locates and loads source maps, optionally updating source paths.",
"author": "Ferdinand Prantl <prantlf@gmail.com> (http://prantl.tk)",
"contributors": [
{
"name": "Gabriele Genta",
"email": "gabriele.genta@gmail.com"
}
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/karma-sourcemap-loader/blob/master/LICENSE"
}
],
"homepage": "http://github.com/prantlf/karma-sourcemap-loader/",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/karma-sourcemap-loader.git"
},
"bugs": {
"url": "http://github.com/prantlf/karma-sourcemap-loader/issues"
},
"main": "index.js",
"files": [
"index.js"
],
"engines": {
"node": ">=15"
},
"scripts": {
"debug:prefixes": "karma start test/karma.prefixes.js --reporters=progress --single-run=false --auto-watch",
"debug:handler": "karma start test/karma.handler.js --reporters=progress --single-run=false --auto-watch",
"debug:source-root": "karma start test/karma.source-root.js --reporters=progress --single-run=false --auto-watch",
"pretest": "cd test && rollup -c",
"lint": "biome lint *.js test",
"test": "c8 karma start test/karma.prefixes.js && c8 --no-clean karma start test/karma.handler.js && c8 --no-clean karma start test/karma.source-root-value.js && c8 --no-clean karma start test/karma.source-root-function.js && c8 report -r text -r lcov && c8 check-coverage --100"
},
"c8": {
"reporter": []
},
"dependencies": {
"graceful-fs": "4.2.11"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@prantlf/karma-sourcemap-loader": "link:",
"c8": "11.0.0",
"jasmine-core": "6.2.0",
"karma": "6.4.4",
"karma-brief-reporter": "0.3.0",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"rollup": "4.60.2",
"rollup-sourcemap-path-transform": "1.2.0"
},
"keywords": [
"karma-plugin",
"karma-preprocessor",
"source-maps",
"remap",
"javascript"
]
}