-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "usng.js",
"description": "AMD compatible script for converting LL, UTM, USNG, and MGRS",
"licenses": [
{
"type": "MIT"
}
],
"homepage": "https://github.com/codice/usng.js",
"keywords": [
"gps",
"coordinates",
"conversion",
"mgrs",
"usng",
"utm",
"latitude",
"longitude",
"lat/long",
"coordinate",
"system"
],
"repository": {
"type": "git",
"url": "git://github.com/codice/usng.js.git"
},
"version": "0.4.5",
"devDependencies": {
"chai": "^4.1.2",
"chai-match": "^1.1.1",
"mocha": "^5.2.0",
"typescript": "^3.0.3",
"typescript-formatter": "^7.2.2",
"underscore": "^1.9.1"
},
"bin": {
"usng-cli": "./bin/cli.js"
},
"bugs": {
"url": "https://github.com/codice/usng.js/issues"
},
"main": "dist/usng.js",
"types": "dist/usng.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc",
"test": "npm run build && mocha tests/tests.js",
"prepare": "npm run build",
"publish:npm": "yarn build && yarn publish --access public && git push --tags",
"format": "tsfmt -r"
},
"author": "codice",
"license": "MIT"
}