forked from ksullivan1856/vue-bing-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "vue-bing-maps",
"version": "0.0.4",
"description": "Vue wrapper for Bing Maps v8",
"main": "./dist/index.js",
"scripts": {
"build-full": "npm run clean && npm run build",
"clean": "rimraf dist",
"build": "cross-env NODE_ENV=production cross-env BABEL_ENV=production webpack --mode production --progress --hide-modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksullivan1856/vue-bing-maps.git"
},
"keywords": [
"vue",
"bing",
"maps",
"component"
],
"author": "Kenneth Sullivan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ksullivan1856/vue-bing-maps/issues"
},
"homepage": "https://github.com/ksullivan1856/vue-bing-maps#readme",
"files": [
"src",
"dist"
],
"devDependencies": {
"@babel/core": "^7.2.2",
"babel": "^6.23.0",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"promise-polyfill": "^8.1.0",
"rimraf": "^2.6.3",
"vue-loader": "^15.6.2",
"vue-template-compiler": "^2.6.0",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.1",
"webpack-stats-plugin": "^0.2.1"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}