-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "instagpx",
"version": "2.0.0",
"description": "Generate images with your GPX activity stats, route track map and your own pictures with InstaGPX",
"main": "src/main.js",
"scripts": {
"start": "npm run dev",
"dev": "parcel src/app.html -d .localserver",
"prebuild": "rm -rf dist",
"build": "parcel build src/app.html --out-file index.html --public-url './' --no-cache --no-source-maps",
"deploy": "npm run build && netlify deploy --dir dist --prod",
"version": "npm run build && git add -A dist/",
"postversion": "git push && git push --tags && npm publish"
},
"postcss": {
"modules": false,
"map": false,
"plugins": {
"cssnano": {},
"autoprefixer": {}
}
},
"browserslist": [
">1%",
"last 2 versions",
"Firefox ESR",
"not ie < 9",
"not dead"
],
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alterebro/instagpx.git"
},
"keywords": [
"gpx",
"stats",
"graph",
"pic"
],
"author": "Jorge Moreno, moro.es (@alterebro)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/alterebro/instagpx/issues"
},
"homepage": "https://github.com/alterebro/instagpx#readme",
"devDependencies": {
"@mapbox/polyline": "^1.1.1",
"@vue/component-compiler-utils": "^3.2.0",
"autoprefixer": "^9.8.6",
"parcel-bundler": "^1.12.4",
"parcel-plugin-css-url-loader": "^1.0.5",
"parcel-plugin-static-files-copy": "^2.5.0",
"parcel-plugin-wrapper": "^0.2.2",
"sass": "^1.26.10",
"tinytime": "^0.2.6",
"urlencode": "^1.1.0",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"lib": "^4.3.0",
"vue-hot-reload-api": "^2.3.4"
}
}