-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "fuse-box-svgstore-plugin",
"version": "0.0.4",
"description": "A FuseBox plugin creating and bundling svg symbol sprites with svgstore.",
"scripts": {
"prepare": "tsc",
"test": "tsc && mocha test/fuse.spec.js",
"lint": "eslint -c .eslintrc.ts.json **/*.ts && eslint -c .eslintrc.js.json ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/h-ikeda/fuse-box-svgstore-plugin.git"
},
"keywords": [
"fuse",
"box",
"fusebox",
"plugin",
"api",
"svg",
"symbol",
"sprite",
"icon"
],
"author": "Hiroki IKEDA <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/h-ikeda/fuse-box-svgstore-plugin/issues"
},
"homepage": "https://github.com/h-ikeda/fuse-box-svgstore-plugin#readme",
"devDependencies": {
"@types/node": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"fuse-box": "^3.7.1",
"mocha": "^8.0.1",
"rimraf": "^3.0.0",
"svgson": "^5.2.1",
"typescript": "^3.4.4"
},
"dependencies": {
"svgstore": "^3.0.0-2"
},
"peerDependencies": {
"fuse-box": "^3.7.1"
}
}