-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "intercity.js",
"version": "0.0.1",
"description": "An Express.js-like WMS/WMTS server",
"main": "index.js",
"scripts": {
"dev": "DEBUG=1 nodemon test/testserver.js",
"test": "mocha",
"lint": "eslint src/*.js test/*.js",
"codecov": "curl -s https://codecov.io/bash | bash",
"c8": "npx c8 node --experimental-specifier-resolution=node --no-warnings node_modules/mocha/lib/cli/cli.js",
"lcov": "npx c8 report --reporter=text-lcov > coverage/tests.lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/intercity.git"
},
"keywords": [
"node",
"wms",
"wmts",
"gdal",
"express"
],
"author": "Momtchil Momtchev <momtchil@momtchev.com>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mmomtchev/intercity/issues"
},
"homepage": "https://github.com/mmomtchev/intercity#readme",
"dependencies": {
"async-lock": "^1.3.0",
"fastify": "^3.18.0",
"gdal-async": "^3.4.0-alpha.3",
"moment": "^2.29.1",
"semver": "^7.3.5",
"xmlbuilder2": "^2.4.1"
},
"devDependencies": {
"c8": "^7.10.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"eslint": "^7.32.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^9.1.3",
"nodemon": "^2.0.13",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"prettier": "^2.4.1",
"proj4": "^2.7.5"
}
}