-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.97 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": "geovisto-themes",
"version": "2.0.1",
"description": "Geovisto tool which provides support for custom style themes",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "rollup -c",
"build:watch": "rollup -c -w"
},
"keywords": [
"gis",
"map",
"geovisto",
"leaflet",
"spatial-data",
"visualization"
],
"homepage": "https://github.com/geovisto/geovisto-themes",
"repository": {
"type": "git",
"url": "https://github.com/geovisto/geovisto-themes"
},
"author": {
"name": "Jiri Hynek",
"url": "https://github.com/jirka"
},
"contributors": [
{
"name": "Jakub Kachlik",
"url": "https://github.com/kachlikjakub"
}
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/runtime": "^7.14.8",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/d3": "^7.0.0",
"@types/leaflet": "^1.7.4",
"@types/node": "^12.20.17",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"autoprefixer": "^10.3.1",
"eslint": "^7.31.0",
"geovisto": "^2.0.0",
"husky": "^7.0.1",
"leaflet": "^1.7.1",
"postcss": "^8.3.6",
"postcss-copy": "^7.1.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.54.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"sass": "^1.36.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"geovisto": "^2.0.0"
}
}