forked from demerzel3/karma-sourcemap-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.47 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
83
{
"name": "@prantlf/karma-sourcemap-loader",
"version": "1.0.1",
"description": "Karma plugin that locates and loads source maps, optionally updating source paths.",
"author": "Ferdinand Prantl <[email protected]> (http://prantl.tk)",
"contributors": [
{
"name": "Gabriele Genta",
"email": "[email protected]"
}
],
"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",
"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": []
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"dependencies": {
"graceful-fs": "4.2.11"
},
"devDependencies": {
"@prantlf/karma-sourcemap-loader": "link:",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "7.13.0",
"denolint": "2.0.9",
"jasmine-core": "4.6.0",
"karma": "6.4.2",
"karma-brief-reporter": "0.2.2",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"rollup": "3.21.5",
"rollup-sourcemap-path-transform": "1.0.3"
},
"keywords": [
"karma-plugin",
"karma-preprocessor",
"source-maps",
"remap",
"javascript"
]
}