-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 1.61 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
63
64
65
66
67
68
{
"name": "@geolonia/open-reverse-geocoder",
"version": "0.1.0",
"description": "",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint \"src/**/*.ts\" --fix",
"prepare": "npm run build",
"build": "rm -rf ./dist && rollup -c ./rollup.config.ts",
"build:tiles": "bash bin/build.sh"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-typescript": "^8.2.1",
"@tsconfig/node14": "^1.0.0",
"@types/d3-geo": "^2.0.0",
"@types/geojson": "^7946.0.8",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.45.2",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typescript": "^4.2.3"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
],
"moduleNameMapper": {
"^#/(.+)": "<rootDir>/src/$1"
}
},
"dependencies": {
"axios": "^0.21.1",
"axios-cache-adapter": "^2.7.3",
"d3-geo": "^2.0.1",
"global-mercator": "^3.1.0",
"mapbox-vector-tile": "^0.3.0"
}
}