-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
77 lines (77 loc) · 1.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gulp-svgmin",
"version": "4.1.0",
"description": "Minify SVG files with gulp.",
"license": "MIT",
"homepage": "https://github.com/ben-eb/gulp-svgmin",
"author": {
"name": "Ben Briggs",
"email": "[email protected]",
"url": "https://beneb.info"
},
"main": "dist/index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary ava",
"pretest": "xo src tests",
"prepublishOnly": "del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist",
"test": "nyc ava"
},
"files": [
"LICENSE-MIT",
"dist"
],
"repository": "ben-eb/gulp-svgmin",
"keywords": [
"gulpplugin",
"minify",
"svg",
"svgo"
],
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"plugin-error": "^1.0.1",
"svgo": "^2.7.0"
},
"devDependencies": {
"@babel/cli": "^7.22.6",
"@babel/core": "^7.22.8",
"@babel/preset-env": "^7.22.7",
"@babel/register": "^7.22.5",
"ava": "^3.15.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"del-cli": "^4.0.1",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"vinyl": "^2.2.1",
"xo": "^0.38.2"
},
"prettier": {
"bracketSpacing": false,
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true
},
"xo": {
"prettier": true
},
"ava": {
"require": "@babel/register",
"verbose": true
},
"nyc": {
"exclude": [
"node_modules",
"tests"
],
"check-coverage": true,
"functions": 100,
"lines": 100,
"branches": 100,
"reporter": [
"text",
"html"
]
}
}