-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "svgdom",
"version": "0.0.20",
"description": "Straightforward DOM implementation to make SVG.js run headless on Node.js",
"main": "dom.js",
"scripts": {
"test": "mocha",
"fix": "npx eslint ./ --fix",
"lint": "npx eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svgdotjs/svgdom.git"
},
"keywords": [
"svgjs",
"dom",
"nodejs"
],
"author": "Ulrich-Matthias Schäfer",
"license": "MIT",
"bugs": {
"url": "https://github.com/svgdotjs/svgdom/issues"
},
"homepage": "https://github.com/svgdotjs/svgdom#readme",
"dependencies": {
"fontkit": "^1.5.4",
"gl-matrix": "^2.3.2",
"image-size": "^0.5.1",
"sax": "^1.2.2"
},
"devDependencies": {
"@svgdotjs/svg.js": "^3.0.6",
"mocha": "^4.1.0",
"puppeteer": "^1.9.0",
"reify": "^0.12.3",
"xmldom": "^0.1.27",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}