forked from themustafaomar/jsvectormap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.53 KB
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
{
"name": "jsvectormap",
"version": "1.3.0",
"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": "themustafaomar@gmail.com"
},
"scripts": {
"dev": "webpack-dev-server --config webpack.config.js --mode development --watch --open",
"build": "rollup -c"
},
"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/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-node-resolve": "^7.1.3",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"css-loader": "^4.3.0",
"node-sass": "^4.14.1",
"postcss": "^7.0.35",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^5.3.1",
"sass-loader": "^10.1.1",
"style-loader": "^1.3.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {},
"browserslist": {
"production": [
"ie >= 9"
]
}
}