forked from ben-eb/gulp-svgmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.29 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.29 KB
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": "gulp-svgmin",
"version": "1.2.2",
"description": "Minify SVG files with gulp.",
"license": "MIT",
"homepage": "https://github.com/ben-eb/gulp-svgmin",
"author": {
"name": "Ben Briggs",
"email": "beneb.info@gmail.com",
"url": "http://beneb.info"
},
"main": "dist/index.js",
"scripts": {
"pretest": "eslint src",
"prepublish": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
"test": "nyc ava src/__tests__"
},
"files": [
"LICENSE-MIT",
"dist"
],
"repository": "ben-eb/gulp-svgmin",
"keywords": [
"gulpplugin",
"minify",
"svg",
"svgo"
],
"dependencies": {
"gulp-util": "^3.0.4",
"svgo": "^0.6.1"
},
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "~3.5.0",
"coveralls": "^2.11.6",
"del-cli": "^0.2.0",
"eslint": "^2.1.0",
"eslint-config-cssnano": "^2.0.0",
"nyc": "^6.0.0"
},
"eslintConfig": {
"extends": "cssnano"
},
"ava": {
"require": "babel-core/register"
},
"nyc": {
"exclude": [
"**/__tests__"
]
}
}