forked from mapbox/spritezero-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 849 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
{
"name": "@geolonia/spritezero-cli",
"version": "2.1.0",
"main": "index.js",
"description": "a fork of the @mapbox/spritezero-cli to support Node v14+.",
"author": "Geolonia",
"license": "ISC",
"repository": "geolonia/spritezero-cli",
"bugs": "https://github.com/geolonia/spritezero-cli/issues",
"bin": {
"spritezero": "bin/spritezero"
},
"keywords": [
"sprite",
"spritezero",
"svg",
"vector"
],
"dependencies": {
"@mapbox/spritezero": "^8.0.0",
"json-stable-stringify": "^1.0.1",
"minimist": "^1.2.5",
"multiline": "^2.0.0",
"queue-async": "^1.2.1"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "eslint bin/spritezero test/",
"test": "npm run lint && tap test/test.js"
},
"devDependencies": {
"eslint": "^8.9.0",
"tap": "^15.1.6"
}
}