forked from themustafaomar/jsvectormap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "jsvectormap",
"version": "1.0.1",
"description": "A lightweight Javascript library for creating interactive maps",
"main": "dist/js/jsvectormap.min.js",
"style": "dist/css/jsvectormap.min.css",
"sass": "dist/css/jsvectormap.min.css",
"author": {
"name": "Mustafa Omar",
"email": "[email protected]"
},
"scripts": {
"watch": "webpack-dev-server --config webpack.config.js --mode development --watch --open",
"build": "rollup -c"
},
"keywords": [
"javascript",
"interactive",
"vector",
"map",
"svg"
],
"files": [
"dist",
"src",
"assets",
"samples",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/themustafaomar/jsvectormap.git"
},
"bugs": {
"url": "https://github.com/themustafaomar/jsvectormap/issues"
},
"homepage": "https://github.com/themustafaomar/jsvectormap#readme",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-loader": "^8.0.6",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.2.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}