forked from elliotstokes/gpx-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 873 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
{
"name": "gpx-parse",
"author": "Elliot Stokes",
"description": "GPX parser for Node.js",
"version": "0.6.0",
"keywords": [
"gpx",
"parser",
"gps",
"geo"
],
"dependencies": {
"xml2js": "^0.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/elliotstokes/gpx-parse.git"
},
"devDependencies": {
"coveralls": "*",
"grunt": "^0.4.5",
"grunt-jsdoc": "^0.5.4",
"jscoverage": "*",
"nodeunit": "*",
"sandboxed-module": "*",
"server-destroy": "^1.0.0",
"st": "^0.5.1"
},
"scripts": {
"test": "node_modules/.bin/nodeunit tests/",
"integration": "node_modules/.bin/nodeunit tests/integration/",
"coveralls": "jscoverage lib && GPXPARSE_COV=1 nodeunit --reporter=lcov tests | coveralls",
"lcov": "jscoverage lib && GPXPARSE_COV=1 nodeunit --reporter=lcov tests"
}
}