-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 978 Bytes
/
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-simple-icons",
"description": "Simple icons for Svelte",
"version": "1.0.3",
"author": "antony <[email protected]>",
"repository": {
"url": "beyonk-adventures/svelte-simple-icons",
"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": {
"fs-extra": "^8.0.1",
"pascal-case": "^2.0.1",
"path": "^0.12.7",
"rollup": "latest",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-svelte": "latest",
"rollup-plugin-terser": "^5.0.0",
"simple-icons": "^1.19.0",
"svelte": "latest"
},
"keywords": [
"svelte",
"simple-icons",
"fa",
"feather",
"brands"
]
}