-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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": "@mapbox/spritezero",
"version": "6.3.0",
"main": "./index.js",
"description": "small opinionated sprites",
"author": "Tom MacWright",
"license": "ISC",
"repository": "mapbox/spritezero",
"bugs": "https://github.com/mapbox/spritezero/issues",
"keywords": [
"sprite",
"images",
"icons",
"json"
],
"dependencies": {
"d3-queue": "^3.0.7",
"json-stable-stringify": "^1.0.1",
"mapnik": "^4.4.0",
"potpack": "^1.0.1",
"svg-boundings": "^2.0.3",
"svgo": "^1.3.0"
},
"devDependencies": {
"documentation": "4.0.0-beta10",
"eslint": "^3.9.0",
"glob": "^7.1.0",
"greenkeeper-postpublish": "^1.0.1",
"tap": "^10.1.0"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"docs": "documentation build lib --lint --github --format html --output docs/",
"lint": "eslint lib/ test/",
"regenerate-fixtures": "node test/regenerate.js",
"test": "npm run lint && tap --cov -R spec test/*.test.js",
"postpublish": "greenkeeper-postpublish"
}
}