-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
57 lines (57 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
48
49
50
51
52
53
54
55
56
57
{
"name": "svg-url-loader",
"version": "7.0.0",
"description": "Converts SVG file to utf-8 encoded data-uri string",
"main": "./index.js",
"files": [
"index.js",
"src"
],
"scripts": {
"format": "prettier --write '**/*.{ts,tsx,js,jsx,css,md,yml}'",
"test": "jest --coverage",
"test-watch": "jest --watch"
},
"dependencies": {
"file-loader": "~6.2.0",
"loader-utils": "~2.0.0"
},
"peerDependencies": {
"webpack": "^4.0.0 || ^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhovhannes/svg-url-loader.git"
},
"keywords": [
"data-uri",
"encoding",
"loader",
"svg",
"url-loader",
"utf8",
"webpack"
],
"author": "Hovhannes Babayan",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhovhannes/svg-url-loader/issues"
},
"homepage": "https://github.com/bhovhannes/svg-url-loader#readme",
"devDependencies": {
"@jest/globals": "26.6.2",
"css-loader": "5.0.1",
"husky": "4.3.0",
"jest": "26.6.3",
"less": "3.12.2",
"less-loader": "7.1.0",
"lint-staged": "10.5.2",
"node-sass": "4.14.1",
"prettier": "2.2.0",
"sass-loader": "10.1.0",
"webpack": "4.44.2"
},
"engines": {
"node": ">=10"
}
}