This repository has been archived by the owner on Apr 21, 2021. It is now read-only.
forked from swisnl/laravel-mix-svg-sprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.5 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
{
"name": "laravel-mix-svg-sprite",
"description": "SVG sprite component for Laravel Mix",
"version": "1.0.2",
"keywords": [
"laravel",
"mix",
"laravel mix",
"webpack",
"component",
"svg",
"sprite"
],
"homepage": "https://github.com/swisnl/laravel-mix-svg-sprite",
"author": {
"name": "Jasper Zonneveld",
"url": "https://www.swis.nl/over-ons/jasper-zonneveld"
},
"repository": {
"type": "git",
"url": "git://github.com/swisnl/laravel-mix-svg-sprite.git"
},
"bugs": {
"url": "https://github.com/swisnl/laravel-mix-svg-sprite/issues"
},
"license": "MIT",
"dependencies": {
"svg-sprite-loader": "^5.2.1",
"svgo": "^1.0.0",
"svgo-loader": "^2.1.0"
},
"peerDependencies": {
"laravel-mix": ">=2.1.0"
},
"devDependencies": {
"eslint": "^5.15.3",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-node": "^8.0.1",
"laravel-mix": "^4.0.15",
"mocha": "^6.0.2",
"mocha-junit-reporter": "^1.17.0",
"nyc": "^13.3.0"
},
"scripts": {
"lint": "eslint --format=node_modules/eslint-friendly-formatter src/ test/ index.js config.js",
"fix": "eslint --format=node_modules/eslint-friendly-formatter src/ test/ index.js config.js --fix",
"test": "mocha",
"test:coverage": "nyc mocha",
"coverage": "nyc report"
},
"main": "index.js",
"files": [
"src",
"config.js",
"index.js"
],
"engines": {
"node": ">=6.0.0"
}
}