-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
58 lines (58 loc) · 1.44 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mapslice",
"version": "3.0.0",
"description": "Slices a given image into tiles to be used for a interactive map display. (including command-line tool)",
"main": "index.js",
"keywords": [
"slice",
"image",
"manipulation"
],
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:typescript",
"test:lint": "standard",
"test:unit": "tap test/*.js test/**/*.js",
"test:typescript": "npx ts-node -O '{ \"esModuleInterop\": true }' example/example.ts"
},
"bin": {
"mapslice": "./bin/mapslice"
},
"author": "Martin Heidegger <[email protected]>",
"contributors": [
{
"name": "Aaron Blondeau",
"url": "https://github.com/aaronblondeau"
},
{
"name": "F. Orlando",
"url": "https://github.com/frulo"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:martinheidegger/mapslice.git"
},
"bugs": {
"url": "https://github.com/martinheidegger/mapslice/issues"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/martinheidegger/mapslice",
"dependencies": {
"abort-controller": "^3.0.0",
"gm": "^1.23.1",
"joi": "^17.2.0",
"mkdirp": "^1.0.4",
"p-map": "^4.0.0",
"stable-stringify": "^1.0.0",
"string-template": "^1.0.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/gm": "^1.18.9",
"standard": "^14.3.4",
"tap": "^14.10.8"
}
}