-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "@fec/remark-images",
"version": "0.8.2",
"description": "Remark plugin to generate responsive images.",
"main": "dist/remark-images.cjs.js",
"module": "dist/remark-images.esm.js",
"scripts": {
"test": "jest",
"build": "rollup -c",
"prepare": "npm run build"
},
"author": "Florian Eckerstofer <florian@eckerstorfer.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/florianeckerstorfer/remark-images.git"
},
"keywords": [
"remark",
"responsive",
"images"
],
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@fec/eleventy-plugin-remark": "^4.0.0",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"cheerio": "^1.0.0-rc.12",
"jest": "^29.7.0",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"rollup": "^2.70.2"
},
"dependencies": {
"debug": "^4.3.4",
"hastscript": "^7.0.2",
"probe-image-size": "^7.2.3",
"sharp": "0.32.6",
"unist-util-visit-parents": "^3.1.1"
},
"peerDependencies": {
"remark": "^14.0.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,ts}"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testRegex": "/__tests__/.*\\.spec\\.[jt]s$",
"transformIgnorePatterns": [
"node_modules/(?!(hastscript|property-information|hast-[a-z-]+|space-separated-tokens|comma-separated-tokens|unist-[a-z-]+|unified|remark|remark-[a-z-]+|bail|is-plain-obj|trough|vfile|vfile-message|mdast-[a-z-]+|micromark|micromark-[a-zA-Z0-9-]+|decode-named-character-reference|character-entities|zwitch|longest-streak|html-void-elements|stringify-entities|character-entities-legacy|character-entities-html4|ccount)/)"
]
},
"engines": {
"node": ">=14.0"
},
"files": [
"dist"
]
}