-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 2.18 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
57
58
59
60
61
62
63
64
65
66
{
"bin": {
"spriter": "bin/spriter.js"
},
"name": "@esri/calcite-ui-icons",
"version": "3.29.2",
"private": false,
"description": "A collection of UI SVG icons created by Esri for applications.",
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/calcite-ui-icons.git"
},
"main": "index.js",
"js-next:main": "index.js",
"module": "index.js",
"keywords": [
"esri",
"arcgis",
"apps",
"icons",
"svg"
],
"contributors": [
{
"name": "Paul Pederson",
"email": "<[email protected]>"
},
{
"name": "Skye Seitz",
"email": "<[email protected]>"
}
],
"license": "SEE LICENSE IN README.md",
"bugs": {
"url": "https://github.com/Esri/calcite-ui-icons/issues"
},
"homepage": "https://github.com/Esri/calcite-ui-icons#readme",
"scripts": {
"spriter": "node bin/spriter.js",
"buildsprite-16": "svgstore -o sprite-16.svg icons/*-16*.svg",
"buildsprite-24": "svgstore -o sprite-24.svg icons/*-24*.svg",
"buildsprite-32": "svgstore -o sprite-32.svg icons/*-32*.svg",
"optimize": "node bin/cli.js",
"start": "npm run buildsprite-16 && npm run buildsprite-24 && npm run buildsprite-32 && npm run optimize",
"server": "node bin/server.js",
"convert-all-ios": "node bin/convert-mobile.js -o \"../mobile-output\" -p \"ios\" -i \"24\"",
"convert-all-ios:size": "node bin/convert-mobile.js -o \"../mobile-output\" -p \"ios\" -s",
"convert-all-desktop:size": "node bin/convert-mobile.js -o \"../desktop-output\" -i \"16\" -s",
"convert-all-desktop-multi": "node bin/convert-mobile.js -o \"../desktop-output\" -i \"16\" -s 16 && node bin/convert-mobile.js -o \"../desktop-output\" -s 24 && node bin/convert-mobile.js -o \"../desktop-output\" -s 32 && node bin/convert-mobile.js -o \"../desktop-output\" -s 64"
},
"devDependencies": {
"browser-sync": "^2.24.7",
"camelcase": "^5.3.1",
"cli-progress": "^3.1.0",
"debounce": "^1.2.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.4",
"glob-promise": "^3.4.0",
"promise": "~8.0.1",
"svgo": "^1.3.0",
"svgson": "^2.1.1",
"svgstore-cli": "^1.3.1",
"svg2img": "^0.6.1",
"yargs": "^15.1.0"
}
}