-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "svg-as-symbol-loader",
"version": "1.2.4",
"description": "A webpack loader which loads SVG file contents as SVG <symbol> element markup.",
"main": "index.js",
"files": [
"index.js",
"src"
],
"scripts": {
"format": "prettier --write '**/*.{ts,tsx,js,jsx,css,md,yml}'",
"test": "jest --coverage --runInBand --detectOpenHandles",
"test-watch": "jest --watch --detectOpenHandles"
},
"dependencies": {
"loader-utils": "~3.3.0",
"@xmldom/xmldom": "0.9.5",
"xpath": "0.0.34"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bhovhannes/svg-as-symbol-loader.git"
},
"keywords": [
"webpack",
"loader",
"symbol",
"svg"
],
"author": "Hovhannes Babayan",
"license": "MIT",
"bugs": {
"url": "https://github.com/bhovhannes/svg-as-symbol-loader/issues"
},
"homepage": "https://github.com/bhovhannes/svg-as-symbol-loader#readme",
"devDependencies": {
"@bhovhannes/shared-config": "0.0.1",
"@evilmartians/lefthook": "1.8.2",
"@jest/globals": "29.7.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"webpack": "5.96.1"
},
"engines": {
"node": ">=10"
}
}