-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
48
{
"name": "simplify-gpx",
"version": "1.0.0",
"description": "Simplify gpx tracks by simplifying geometry using simplify-geometry (Ramer–Douglas–Peucker algorithm)",
"main": "index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"start": "babel-node cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freele/simplify-gpx.git"
},
"keywords": [
"gpx",
"geojson",
"geometry",
"gis",
"track"
],
"author": "Alexander Kremenets",
"license": "ISC",
"bugs": {
"url": "https://github.com/freele/simplify-gpx/issues"
},
"homepage": "https://github.com/freele/simplify-gpx#readme",
"dependencies": {
"bluebird": "^3.3.1",
"command-line-args": "^2.1.6",
"common-path-prefix": "^1.0.0",
"gpx-parse": "^0.10.3",
"jsdom": "^8.0.2",
"mkdirp": "^0.5.1",
"recursive-readdir": "^1.3.0",
"simplify-geometry": "0.0.2",
"togeojson": "^0.13.0",
"togpx": "^0.4.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.5.0",
"eslint": "^1.0.0",
"eslint-config-airbnb": "^5.0.1",
"eslint-plugin-react": "^3.16.1"
}
}