-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
39 lines (39 loc) · 969 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
38
39
{
"name": "@mapbox/spritezero",
"version": "8.0.3",
"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": {
"@mapbox/shelf-pack": "~3.0.0",
"json-stable-stringify": "^1.0.1",
"mapnik": "^4.4.0",
"queue-async": "^1.2.1",
"svg-boundings": "^2.0.3",
"svgo": "^2.8.0"
},
"devDependencies": {
"documentation": "4.0.0-beta10",
"eslint": "^3.9.0",
"glob": "^7.1.0",
"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 test/*.test.js"
}
}