-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 731 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 731 Bytes
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
{
"name": "utm",
"version": "1.1.1",
"description": "Bidirectional UTM-WGS84 converter",
"main": "index.js",
"module": "index.es.js",
"jsnext:main": "index.es.js",
"scripts": {
"test": "npm run build && node test.js",
"build": "rollup -o index.js -f cjs index.es.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timothygu/utm.git"
},
"keywords": [
"utm",
"latlon"
],
"author": "Timothy Gu <timothygu99@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timothygu/utm/issues"
},
"homepage": "https://github.com/timothygu/utm#readme",
"devDependencies": {
"chai": "^4.0.2",
"rollup": "^0.43.0",
"testit": "^2.1.2"
}
}