-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.75 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
64
65
66
67
68
69
70
71
{
"name": "@jsdevtools/rehype-inline-svg",
"version": "1.1.4",
"description": "A rehype plugin that inlines and optimizes SVG images",
"keywords": [
"unified",
"rehype",
"plugin",
"rehype-plugin",
"inline",
"optimize",
"svg",
"image",
"img",
"html"
],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://jstools.dev/rehype-inline-svg",
"repository": {
"type": "git",
"url": "https://github.com/JS-DevTools/rehype-inline-svg.git"
},
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage lib",
"lint": "eslint src test",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "NPM_CHECK_INSTALLER=pnpm npm-check -u",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
},
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
"devDependencies": {
"@jsdevtools/eslint-config": "^1.1.4",
"@jsdevtools/version-bump-prompt": "^6.1.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/node": "^14.14.19",
"@types/unist": "^3.0.2",
"chai": "^5.1.1",
"eslint": "^7.17.0",
"mocha": "^10.4.0",
"npm-check": "^5.9.2",
"nyc": "^15.1.0",
"rehype-stringify": "^10.0.0",
"shx": "^0.3.3",
"to-vfile": "^8.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"vfile": "^6.0.1"
},
"dependencies": {
"rehype-parse": "^9.0.0",
"svgo": "^3.3.2",
"unified": "^11.0.4"
}
}