forked from svgdotjs/svgdom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "svgdom",
"version": "0.1.11",
"description": "Straightforward DOM implementation for SVG, HTML and XML",
"main": "./main-require.cjs",
"exports": {
"import": "./main-module.js",
"require": "./main-require.cjs"
},
"type": "module",
"scripts": {
"test": "mocha",
"fix": "npx eslint ./ --fix",
"lint": "npx eslint ./",
"build": "npx webpack --config webpack.config.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svgdotjs/svgdom.git"
},
"keywords": [
"svgjs",
"dom",
"xml",
"xmldom",
"svgdom",
"nodejs"
],
"author": "Ulrich-Matthias Schäfer",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Fuzzyma"
},
"bugs": {
"url": "https://github.com/svgdotjs/svgdom/issues"
},
"homepage": "https://github.com/svgdotjs/svgdom#readme",
"dependencies": {
"fontkit": "^1.8.1",
"image-size": "^1.0.0",
"sax": "^1.2.4"
},
"devDependencies": {
"acorn": "^8.5.0",
"circular-dependency-plugin": "^5.2.2",
"eslint": "^8.2.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-sort-class-members": "^1.14.0",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^9.1.3",
"reify": "^0.20.12",
"webpack": "^5.64.0",
"webpack-cli": "^4.9.1"
}
}