-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
97 lines (97 loc) · 2.5 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "vue2mapbox-gl",
"version": "0.15.2",
"description": "Vue >2 integration of mapbox. ",
"license": "MIT",
"repository": "openearth/vue2mapbox-gl",
"author": {
"name": "Fedor Baart",
"email": "fedor.baart@deltares.nl",
"url": "github.com/openearth/vue2mapbox-gl"
},
"engines": {
"node": ">=4"
},
"scripts": {
"build-dev": "webpack --hide-modules --colors --progress --mode development --display-error-details",
"build": "webpack --hide-modules --colors --progress --mode production --display-error-details",
"lint": "eslint --ext .js,.vue src test",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"main": "dist/vue2mapbox-gl.js",
"module": "src/main.js",
"keywords": [
"vue",
"mapbox",
"mapbox-gl",
"vue2"
],
"jest": {
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js"
},
"transform": {
"^.+\\.vue$": "vue-jest",
"^.+\\.js$": "babel-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$": "jest-transform-stub"
},
"transformIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"vue"
]
},
"dependencies": {
"@mapbox/mapbox-gl-geocoder": "^5.0.1"
},
"peerDependencies": {
"mapbox-gl": ">=2.0.0",
"vue": ">=2.6.10"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-knobs": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addon-storysource": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/vue": "^5.1.9",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"coveralls": "^3.0.4",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-plugin-html": "^5.0.5",
"jest": "^24.8.0",
"jest-transform-stub": "^2.0.0",
"mapbox-gl": "^2.15.0",
"sass": "^1.21.0",
"style-loader": "^0.23.1",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-loader": "^15.7.0",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.4",
"webpack-node-externals": "^1.7.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}