-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "svelte-inline-svg",
"version": "1.1.4",
"description": "Inline SVGs in Svelte",
"main": "dist/index.js",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src/index.js",
"src/index.d.ts",
"src/inline-svg.svelte",
"src/utils/forwardEvents.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest src",
"test:watch": "npm run test -- --watch"
},
"module": "dist/index.mjs",
"svelte": "src/index.js",
"keywords": [
"svelte",
"svg",
"inline"
],
"repository": {
"type": "git",
"url": "https://github.com/robinscholz/svelte-inline-svg"
},
"author": "[email protected]",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@rollup/plugin-node-resolve": "^11.2.0",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/svelte": "^5.2.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-transform-svelte": "^2.1.1",
"rollup": "^2.34.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^4.2.19"
}
}