-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.99 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
81
82
{
"name": "geovisto-info",
"version": "0.9.0",
"description": "Geovisto tool which provides support for map description",
"main": "dist/index.js",
"module": "dist/index.es.js",
"style": "dist/index.css",
"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-info",
"repository": {
"type": "git",
"url": "https://github.com/geovisto/geovisto-info"
},
"author": {
"name": "Tomas Koscielniak",
"url": "https://github.com/tkosci"
},
"contributors": [
{
"name": "Jiri Hynek",
"url": "https://github.com/jirka"
}
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/runtime": "^7.18.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^14.18.18",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"autoprefixer": "^10.4.7",
"eslint": "^8.16.0",
"geovisto": " ^2.0.0",
"husky": "^8.0.1",
"postcss": "^8.4.14",
"postcss-copy": "^7.1.0",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.75.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"sass": "^1.52.1",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"peerDependencies": {
"geovisto": "^2.0.0"
},
"dependencies": {
"markdown-it": "^13.0.1"
}
}