-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "webpack-external-svg-sprite",
"version": "1.0.0",
"description": "A plugin for webpack that converts all your SVGs into symbols and merges them into a SVG sprite",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anton-drobot/webpack-external-svg-sprite.git"
},
"keywords": [
"svg",
"webpack",
"webpack-plugin"
],
"engines": {
"node": ">=4.0.0",
"npm": ">=2.15.0"
},
"author": "Anton Drobot",
"license": "MIT",
"bugs": {
"url": "https://github.com/anton-drobot/webpack-external-svg-sprite/issues"
},
"homepage": "https://github.com/anton-drobot/webpack-external-svg-sprite#readme",
"dependencies": {
"cheerio": "^0.20.0",
"extract-text-webpack-plugin": "^3.0.2",
"glob": "^7.1.2",
"loader-utils": "^1.1.0",
"svgo": "^0.7.2",
"webpack-sources": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}