-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "@denali-design/icons",
"description": "Denali Icons library consisting of 1000+ icons packaged into a font, SVG, sprite, and JS library.",
"version": "0.0.0-developmnet",
"scripts": {
"build": "npm-run-all --sequential json sprite font svg",
"font": "rm -rf dist/font && mkdir dist/font && fantasticon -o dist/font -n denali-icons-font -t woff2 -g css --selector .d-icon -p d svg",
"json": "iconit -n denali-icons --json",
"sprite": "iconit -n denali-icons --sprite",
"svg": "rm -rf dist/svg && mkdir dist/svg && cp -R svg dist",
"test": "echo SKIP"
},
"repository": {
"type": "git",
"url": "https://github.com/denali-design/denali-icons.git"
},
"keywords": [
"icons",
"sprite",
"font",
"svg",
"denali"
],
"author": "Chas Turansky <[email protected]> (http://turansky.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/denali-design/denali-icons/issues"
},
"homepage": "https://denali.design/",
"devDependencies": {
"fantasticon": "^1.1.1",
"iconit": "^1.0.1",
"npm-run-all": "^4.1.5"
},
"release": {
"repositoryUrl": "[email protected]:denali-design/denali-icons.git"
},
"publishConfig": {
"access": "public"
}
}