-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
75 lines (75 loc) · 1.81 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
{
"name": "karma-sourcemap-loader",
"version": "0.4.0",
"description": "Karma plugin that locates and loads existing javascript source map files.",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "[email protected]:demerzel3/karma-sourcemap-loader.git"
},
"keywords": [
"karma-plugin",
"karma-preprocessor",
"source-maps",
"javascript"
],
"author": {
"name": "Gabriele Genta",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"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": {
"reporter": []
},
"prettier": {
"printWidth": 100,
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true
},
"eslintConfig": {
"ignorePatterns": [
"test/out"
],
"env": {
"browser": true,
"commonjs": true,
"es2020": true,
"jasmine": true,
"node": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": "eslint:recommended",
"rules": {
"no-var": "error",
"prefer-const": "error"
}
},
"dependencies": {
"graceful-fs": "^4.2.10"
},
"devDependencies": {
"@types/graceful-fs": "^4.1.6",
"c8": "^7.12.0",
"eslint": "^8.33.0",
"jasmine-core": "^4.5.0",
"karma": "^6.4.1",
"karma-brief-reporter": "^0.2.2",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"prettier": "^2.8.3",
"rollup": "^3.10.1",
"rollup-sourcemap-path-transform": "^1.0.3"
}
}