forked from themustafaomar/jsvectormap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "jsvectormap",
"version": "1.4.5",
"description": "A lightweight Javascript library for creating interactive maps",
"main": "dist/js/jsvectormap.min.js",
"style": "dist/css/jsvectormap.min.css",
"sass": "src/scss/jsvectormap.scss",
"author": {
"name": "Mustafa Omar",
"email": "[email protected]"
},
"scripts": {
"dev": "rollup --config --watch",
"build": "rollup --config ./build/package.js",
"build:maps": "rollup --config ./build/maps.js"
},
"keywords": [
"javascript",
"interactive",
"vector",
"map",
"svg"
],
"files": [
"dist",
"src",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/themustafaomar/jsvectormap.git"
},
"bugs": {
"url": "https://github.com/themustafaomar/jsvectormap/issues"
},
"homepage": "https://themustafaomar.com/open-source/jsvectormap",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"node-sass": "^7.0.1",
"postcss": "^8.2.15",
"rollup": "^2.51.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-scss": "^3.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
}
}