-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.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
{
"name": "karma-buble-preprocessor",
"version": "1.2.11",
"description": "A Karma preprocessor for the Buble ES2015+ compiler",
"main": "preprocessor.js",
"devDependencies": {
"jest": "29.7.0",
"markdown-link-check": "3.12.2",
"standard": "17.1.0",
"standard-markdown": "7.1.0"
},
"scripts": {
"pretest": "standard --verbose",
"test": "jest",
"posttest": "npm run markdown:lint && npm run markdown:links",
"markdown:lint": "standard-markdown",
"markdown:links": "ls -1 *.md | xargs -n 1 markdown-link-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blgm/karma-buble-preprocessor.git"
},
"keywords": [
"karma-preprocessor",
"buble",
"ES2015"
],
"author": "George Blue",
"license": "MIT",
"bugs": {
"url": "https://github.com/blgm/karma-buble-preprocessor/issues"
},
"homepage": "https://github.com/blgm/karma-buble-preprocessor#readme",
"jest": {
"collectCoverage": true,
"coverageReporters": [
"text-summary",
"html"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"buble": "^0.20.0"
}
}