-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
43 lines (43 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
{
"name": "gpx-parse",
"author": "Elliot Stokes",
"description": "a GPX parser for Node and client-side JavaScript.",
"version": "0.10.4",
"license": "MIT",
"keywords": [
"gpx",
"parser",
"gps",
"geo"
],
"dependencies": {
"xml2js": "^0.4.4"
},
"repository": {
"type": "git",
"url": "https://github.com/elliotstokes/gpx-parse.git"
},
"devDependencies": {
"browserify": "~13.2.0",
"coveralls": "*",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-jsdoc": "^2.1.0",
"jscoverage": "*",
"nodeunit": "*",
"sandboxed-module": "*",
"server-destroy": "^1.0.0",
"st": "^1.2.0"
},
"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",
"browserify": "node_modules/.bin/grunt browserify"
},
"browserify":{
"./lib-cov/gpx-parse.js": false
}
}