-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "travels",
"version": "1.0.0",
"description": "A record of my travels",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "xo && node scripts/lint-country.js _data/countries/*.json && geojsonhint _data/*/*.json && jsonlint -q *.json _data/*/*.json && jshint _data/*/*.json",
"build": "for i in _data/trips/*.json; do n=\"$(basename $i)\"; geo2topo -o geojson/trips/${n%.*}.topojson $i; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oxyc/travels.git"
},
"author": {
"name": "Oskar Schöldström",
"email": "[email protected]",
"url": "http://whatareyoudoinghere.net"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/oxyc/travels/issues"
},
"homepage": "https://github.com/oxyc/travels#readme",
"devDependencies": {
"geojsonhint": "^1.1.0",
"jshint": "^2.8.0",
"jsonlint": "^1.6.2",
"sass": "^1.24.0",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.11",
"xo": "^0.25.3"
},
"xo": {
"space": true,
"ignores": [
"_site/**",
"vendor/**",
"dist/**"
],
"envs": [
"browser",
"node",
"es6"
],
"rules": {
"import/no-unassigned-import": "off"
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
}
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
}
},
"dependencies": {
"file-exists": "^0.1.1",
"fraction.js": "^4.0.12",
"fs-extra": "^8.1.0",
"highcharts": "^9.0.0",
"js-yaml": "^3.13.1",
"laravel-mix": "^5.0.1",
"leaflet": "^1.6.0",
"leaflet-makimarkers": "^3.1.0",
"leaflet-search": "^2.9.8",
"leaflet.markercluster": "^1.4.1",
"lodash": "^4.17.21",
"select2": "^4.0.12",
"tippy.js": "^5.1.2",
"topojson-client": "^3.1.0",
"topojson-server": "^3.0.1"
}
}