-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
41 lines (41 loc) · 1.58 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": "@rapideditor/temaki",
"version": "5.10.0",
"license": "CC0-1.0",
"repository": "rapideditor/temaki",
"contributors": [
"Bryan Housel <[email protected]> (https://github.com/bhousel)",
"Quincy Morgan <[email protected]> (https://github.com/quincylvania)"
],
"description": "An expansion pack for https://github.com/mapbox/maki",
"main": "",
"type": "module",
"scripts": {
"all": "run-s clean check metadata dist",
"build": "npm run all",
"check": "node scripts/check.js",
"metadata": "node scripts/metadata.js",
"clean": "shx rm -f dist/*",
"dist": "run-p dist:**",
"dist:symbol": "run-s pre-symbol symbol post-symbol",
"pre-symbol": "node scripts/pre-symbol.js",
"post-symbol": "rm mustache-vars.json",
"symbol": "svg-sprite --symbol --symbol-dest . --shape-transform '' --variables 'mustache-vars.json' --shape-id-generator \"temaki-%s\" -w 15 -h 15 --symbol-example true --symbol-example-template docs/template.html --symbol-example-dest docs/index.html --symbol-sprite dist/temaki-symbol.svg icons/*.svg",
"dist:view": "svg-sprite --view --view-dest . --shape-transform '' --shape-id-generator \"temaki-%s\" -w 15 -h 15 -p 2 --view-bust false --view-sprite dist/temaki-view.svg icons/*.svg"
},
"devDependencies": {
"chalk": "^5.3.0",
"glob": "^10.4.1",
"npm-run-all": "^4.1.5",
"shx": "^0.3.4",
"svg-path-parse": "^1.1.3",
"svg-sprite": "^2.0.4",
"xmlbuilder2": "^3.1.1"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}