-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "mgrs",
"version": "2.0.0",
"description": "Utility for converting between WGS84 lat/lng and MGRS coordinates",
"main": "dist/mgrs.min.js",
"module": "dist/mgrs.esm.js",
"types": "index.d.ts",
"files": [
"mgrs.js",
"index.d.ts",
"dist/mgrs.esm.js",
"dist/mgrs.esm.js.map",
"dist/mgrs.js",
"dist/mgrs.min.js",
"dist/mgrs.min.js.map"
],
"scripts": {
"lint": "eslint mgrs.js && eslint test",
"pretest": "npm run clean && npm run build",
"test": "nyc mocha test/test.js",
"clean": "rimraf dist",
"build": "mkdir dist && rollup -c",
"setup": "cd test && node setup.js"
},
"repository": {
"type": "git",
"url": "git://github.com/proj4js/mgrs.git"
},
"keywords": [
"geodesy",
"mgrs",
"proj4",
"gis"
],
"author": "proj4 team",
"license": "MIT",
"bugs": {
"url": "https://github.com/proj4js/mgrs/issues"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.3.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"rollup": "^1.21.2",
"rollup-plugin-terser": "^5.1.1"
}
}