forked from mapbox/spritezero-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 872 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": "@mapbox/spritezero-cli",
"version": "2.1.0",
"main": "index.js",
"description": "a command-line interface for spritezero generation of raster sprites from SVG input",
"author": "Tom MacWright",
"license": "ISC",
"repository": "mapbox/spritezero-cli",
"bugs": "https://github.com/mapbox/spritezero-cli/issues",
"bin": {
"spritezero": "bin/spritezero"
},
"keywords": [
"sprite",
"spritezero",
"svg",
"vector"
],
"dependencies": {
"minimist": "^1.2.0",
"multiline": "^1.0.2",
"queue-async": "^1.2.1",
"json-stable-stringify": "^1.0.1",
"@mapbox/spritezero": "~5.0.0"
},
"devDependencies": {
"eslint": "^4.0.0",
"tap": "^10.1.0"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"lint": "eslint bin/spritezero test/",
"test": "npm run lint && tap test/test.js"
}
}