-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.67 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
{
"name": "karma-requirejs-esm-preprocessor",
"version": "2.2.0",
"description": "Karma preprocessor for converting ES modules to AMD in RequireJS projects.",
"author": "Ferdinand Prantl <prantlf@gmail.com>",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/karma-requirejs-esm-preprocessor/blob/master/LICENSE"
}
],
"homepage": "https://github.com/prantlf/karma-requirejs-esm-preprocessor#readme",
"repository": {
"type": "git",
"url": "https://github.com/prantlf/karma-requirejs-esm-preprocessor.git"
},
"bugs": {
"url": "https://github.com/prantlf/karma-requirejs-esm-preprocessor/issues"
},
"engines": {
"node": ">=14"
},
"files": [
"index.js"
],
"scripts": {
"lint": "biome lint *.js",
"fix": "biome lint --fix *.js",
"check1": "karma start test/karma.conf1.js",
"check2": "karma start test/karma.conf2.js",
"check": "npm run check1 && npm run check2",
"cover": "c8 npm run check1 && c8 --no-clean npm run check2 && c8 report -r text -r lcov && c8 check-coverage --100",
"test": "npm run lint && npm run cover"
},
"c8": {
"reporter": []
},
"peerDependencies": {
"requirejs-esm-preprocessor": "^3.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"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",
"requirejs-esm-preprocessor": "^3.3.0"
},
"keywords": [
"karma-preprocessor",
"karma-plugin",
"karma",
"preprocessor",
"plugin",
"requirejs",
"amd",
"esm",
"es6"
]
}