-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.04 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
{
"name": "@geonet/geohash",
"version": "1.0.16",
"description": "Geohash decode/encoder",
"main": "index.js",
"exports": {
".": {
"require": "./index.js",
"import": "./esm/index.mjs"
},
"./": "./"
},
"scripts": {
"build": "gen-esm-wrapper ./index.js ./esm/index.mjs",
"docs": "jsdoc -c jsdocs.js -r",
"lint": "eslint .",
"test": "nyc --reporter=html --reporter=text-summary mocha",
"testd": "nyc mocha"
},
"keywords": [
"geonet",
"geospatial",
"geohash"
],
"author": "Nick Soggin",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mi-sec/geonet-geohash.git"
},
"bugs": {
"url": "https://github.com/mi-sec/geonet-geohash/issues"
},
"homepage": "https://github.com/mi-sec/geonet-geohash#readme",
"directories": {
"doc": "docs",
"src": "src",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.12.1",
"gen-esm-wrapper": "^1.1.0",
"jsdoc": "^3.6.6",
"mocha": "^8.2.0",
"nyc": "^15.1.0"
}
}