-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "grunt-svgstore",
"version": "2.0.0",
"description": "Merge SVGs from a folder",
"devDependencies": {
"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",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-nodeunit": "^2.0.0",
"html-minifier": "^3.5.21"
},
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"handlebars": "^4.0.5",
"js-beautify": "^1.5.10"
},
"peerDependencies": {
"grunt": ">=1.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "npm run test:eslint && npm run test:grunt",
"test:eslint": "eslint Gruntfile.js tasks/svgstore.js",
"test:grunt": "grunt test"
},
"repository": "FWeinb/grunt-svgstore",
"keywords": [
"svg",
"icon",
"sprite",
"gruntplugin"
],
"author": "Fabrice Weinberg <Fabrice@weinberg.me> (http://blog.weinberg.me)",
"license": "MIT",
"bugs": "https://github.com/FWeinb/grunt-svgstore/issues",
"homepage": "https://github.com/FWeinb/grunt-svgstore#readme"
}