-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.08 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
{
"name": "svelte-zondicons",
"description": "Svelte component for Zondicons by Steve Schoger",
"version": "1.0.1",
"author": "moollaza <[email protected]>",
"repository": {
"url": "https://github.com/moollaza/svelte-zondicons",
"type": "git"
},
"svelte": "src/index.js",
"module": "index.mjs",
"main": "index.js",
"files": [
"src",
"index.mjs",
"index.js"
],
"license": "MIT",
"scripts": {
"build:icons": "node build",
"build:dist": "rollup -c",
"build": "npm run build:icons && npm run build:dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"globby": "^10.0.1",
"pascalcase": "^1.0.0",
"path": "^0.12.7",
"rollup": "latest",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.1",
"rollup-plugin-terser": "^5.1.3",
"svelte": "latest"
},
"keywords": [
"svelte",
"zondicons",
"svg",
"inline",
"icons",
"design"
]
}