-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "nominatim-browser",
"version": "2.1.0",
"description": "A Nominatim client that can be used from the browser.",
"main": "dist/nominatim-browser.js",
"typings": "dist/nominatim-browser.d.ts",
"scripts": {
"build": "./node_modules/.bin/tsc -p . && npm run webpack",
"webpack": "./node_modules/.bin/webpack ./dist/nominatim-browser.js ./dist/nominatim-browser.webpacked.js",
"test": "npm run build && ./node_modules/.bin/alsatian dist/tests/*.js",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nozzlegear/nominatim-browser.git"
},
"keywords": [
"nominatim",
"geocode",
"geocoder",
"browser"
],
"author": "Joshua Harms <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nozzlegear/nominatim-browser/issues"
},
"homepage": "https://github.com/nozzlegear/nominatim-browser#readme",
"dependencies": {
"axios": "^0.18.1",
"bluebird": "^3.3.5"
},
"devDependencies": {
"@types/axios": "^0.9.34",
"@types/bluebird": "^3.0.36",
"alsatian": "^1.0.0-beta.4",
"tap-bark": "^1.0.0-rc.1",
"typescript": "^3.9.6",
"webpack": "^1.14.0"
},
"typescript": {
"definitions": [
"dist/nominatim-browser.d.ts"
]
}
}