forked from wavded/ogre
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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
59
60
61
62
{
"name": "ogre",
"version": "4.0.0",
"description": "ogr2ogr web client",
"keywords": [
"ogr2ogr",
"GIS",
"GeoJSON"
],
"author": "Marc Harter <[email protected]>",
"repository": {
"type": "git",
"url": "http://github.com/wavded/ogre.git"
},
"homepage": "http://github.com/wavded/ogre",
"bin": {
"ogre": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "rm -rf dist && tsc && cp -rf public dist",
"build": "rm -rf dist && tsc && cp -rf public dist",
"start": "ts-node cli.ts",
"test": "nyc ts-node node_modules/.bin/blue-tape index_test.ts",
"lint": "tsc --noEmit && eslint --ext ts .",
"fmt": "prettier --write .",
"fmt-check": "prettier --check ."
},
"dependencies": {
"body-parser": "^1.20.2",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-promise-router": "^4.1.1",
"multer": "1.4.5-lts.1",
"ogr2ogr": "^5.0.0"
},
"devDependencies": {
"@types/blue-tape": "^0.1.36",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.5",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"blue-tape": "^1.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"nyc": "^15.1.0",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^3.2.4",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16"
}
}