-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 926 Bytes
/
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
{
"name": "vue3-geolocation",
"version": "1.0.0",
"description": "Vue3 Geolocation",
"author": {
"name": "Max.Al",
"email": "[email protected]",
"url": "https://max.al"
},
"repository": {
"type": "git",
"url": "https://github.com/maxal-studio/vue3-geolocation.git"
},
"main": "dist/vue3-geolocation.js",
"license": "MIT",
"scripts": {
"dev": "webpack --config webpack.config.js --mode=development",
"prod": "webpack --config webpack.config.js --mode=production"
},
"eslintConfig": {
"root": true,
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 2017
},
"rules": {}
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
}
}