-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 929 Bytes
/
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
{
"name": "parse-gpx",
"version": "2.1.0",
"description": "parse gpx into json",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha tests/test.js",
"coverage": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- tests/test.js"
},
"author": "dmamills",
"dependencies": {
"haversine-distance": "^1.2.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.6.0",
"codecov": "^1.0.1",
"mocha": "^2.4.5",
"should": "^8.0.2"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmamills/parse-gpx.git"
},
"keywords": [
"gpx",
"gps"
],
"bugs": {
"url": "https://github.com/dmamills/parse-gpx/issues"
},
"homepage": "https://github.com/dmamills/parse-gpx#readme"
}