-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "overpassql-loader",
"version": "1.0.1",
"description": "A webpack loader for OverpassQL files",
"main": "lib/loader.js",
"files": [
"lib"
],
"homepage": "https://github.com/johnlettman/overpassql-loader",
"repository": {
"type": "github",
"url": "https://github.com/johnlettman/overpassql-loader"
},
"author": "John P. Lettman",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint .",
"test": "jest",
"coverage": "jest --coverage",
"doc": "yarn docs",
"docs": "typedoc"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/json-schema": "^7.0.12",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.6.1",
"prettier": "^3.0.0",
"prettier-eslint": "^16.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typedoc": "^0.27.2",
"typedoc-github-wiki-theme": "^2.0.0",
"typedoc-plugin-coverage": "^3.1.0",
"typedoc-plugin-markdown": "^4.0.0",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.1.6"
},
"dependencies": {
"geojson": "^0.5.0",
"osmtogeojson": "https://github.com/tyrasd/osmtogeojson#snyk-fix-65371a4c4920389f7e5127c141088511",
"overpass-ts": "^4.3.8",
"simplify-geojson": "^1.0.5",
"webpack": "^5.88.1"
}
}