-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "xyz-tile-debug",
"version": "2.1.1",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"xyz-tile-debug": "./xyz-tile-debug.mjs"
},
"type": "module",
"scripts": {
"start": "node build/src/index.js",
"build": "tsc --pretty",
"build-watch": "tsc --pretty --watch",
"build-docker": "./build.docker.sh",
"lint": "eslint 'src/**/*.ts' --quiet --fix",
"test": "ospec build/**/*.test.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"publishConfig": {
"access": "public"
},
"files": [
"build/",
"xyz-tile-debug.mjs"
],
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@linzjs/style": "^3.4.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.0",
"@types/geojson": "^7946.0.7",
"@types/node": "^14.0.13",
"conventional-changelog-cli": "^2.0.34",
"conventional-github-releaser": "^3.1.5",
"ospec": "^4.1.1"
},
"dependencies": {
"@basemaps/geo": "^6.21.1",
"@linzjs/tile-matrix-set": "^0.0.1",
"canvas": "^2.6.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"pino": "^7.10.0",
"pretty-json-log": "^1.0.0",
"source-map-support": "^0.5.19"
}
}