forked from haensl/gulp-embed-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.95 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
78
79
80
81
82
{
"name": "gulp-embed-svg",
"version": "1.4.11",
"description": "Gulp plugin to embed/inline svg images and optionally create a spritesheet.",
"main": "lib/index.js",
"scripts": {
"lint": "eslint **/*.js",
"lint:ci": "eslint --format junit -o test-results/eslint/results.xml **/*.js",
"prepare": "if [ ${NODE_ENV} != 'production' ]; then husky install; fi",
"tdd": "mocha --watch",
"test": "mocha",
"test:ci": "mocha --recursive --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results/mocha/results.xml"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"mocha": true
},
"parserOptions": {
"sourceType": "module"
},
"extends": [
"@haensl"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/haensl/gulp-embed-svg.git"
},
"bugs": {
"url": "https://github.com/haensl/gulp-embed-svg/issues"
},
"homepage": {
"url": "https://github.com/haensl/gulp-embed-svg#readme"
},
"keywords": [
"gulp",
"gulpplugin",
"gulp-plugin",
"inline",
"embed",
"svg",
"spritesheet",
"html"
],
"author": {
"name": "HP Dietz",
"email": "h.p.dietz@gmail.com",
"twitter": "@h_p_d",
"url": "https://hpdietz.com"
},
"funding": "https://github.com/sponsors/haensl",
"contributors": [
{
"name": "Jan Hadenfeldt",
"url": "https://jan-hadenfeldt.de/",
"email": "github@jan-hadenfeldt.de"
},
{
"name": "HP Dietz",
"email": "h.p.dietz@gmail.com",
"twitter": "@h_p_d",
"url": "https://hpdietz.com"
}
],
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"plugin-error": "^2.0.1",
"through2": "^4.0.2"
},
"devDependencies": {
"@haensl/eslint-config": "^1.4.1",
"chai": "^4.3.0",
"eslint": "^8.2.0",
"gulp": "^4.0.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.0.0"
}
}