-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.41 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
{
"name": "geo-data-exchange",
"version": "2.2.0",
"description": "Transform a GPX or Leaflet track to GeoJSON",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage && node resources/test-coverage-parser.js",
"clean": "rm -rf dist",
"minify": "uglifyjs src/index.js --compress --mangle --warn --output dist/index.min.js",
"build": "npm run clean && npm run test-coverage && mkdir dist && cp src/index.js dist/index.js",
"version:add": "echo \"/* Version: $(npm run version:extract --silent) , Build time: $(date -u '+%Y-%m-%d %H:%M:%S') UTC */\n$(cat dist/index.js)\" > dist/index.js",
"version:extract": "cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'"
},
"repository": {
"type": "git",
"url": "https://github.com/alexcojocaru/geo-data-exchange.git"
},
"keywords": [
"geo",
"gpx",
"leaflet",
"track",
"geojson",
"exchange",
"transform",
"convert",
"altitude",
"elevation"
],
"author": "Alex Cojocaru",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/alexcojocaru/geo-data-exchange/issues"
},
"homepage": "https://github.com/alexcojocaru/geo-data-exchange#readme",
"devDependencies": {
"jest": "26.6.3",
"replace-in-file": "6.1.0",
"uglify-js": "3.12.1"
},
"dependencies": {
"leaflet": "^1.5.0"
}
}