-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "gpx-route-inspector",
"description": "Find the shortest closed circuit that will visit all paths from a series of connected GPX files.",
"version": "1.0.0",
"author": "Luke Karrys <[email protected]>",
"bin": {
"gpx-route-inspector": "./src/cli.js"
},
"bugs": {
"url": "https://github.com/lukekarrys/gpx-route-inspector/issues"
},
"dependencies": {
"@turf/turf": "^5.1.6",
"child-process-promise": "^2.2.1",
"debug": "^4.1.1",
"lodash": "^4.17.11",
"node-geo-distance": "^1.2.0",
"tmp-promise": "^2.0.1",
"xml2js": "^0.4.19",
"yargs-parser": "^13.1.1"
},
"devDependencies": {
"ava": "^2.1.0",
"eslint": "^6.0.0-rc.0",
"prettier": "^1.18.2"
},
"homepage": "https://github.com/lukekarrys/gpx-route-inspector#readme",
"keywords": [
"gps",
"gpx",
"postman",
"route inspection"
],
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/lukekarrys/gpx-route-inspector.git"
},
"scripts": {
"build": "./scripts/build.sh",
"dev": "./scripts/dev.sh",
"eslint": "eslint .",
"prettier": "prettier --write '**/*.{js,md,css,json}'",
"test": "ava"
}
}