-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "vue-chrome-i18n",
"version": "1.0.2",
"description": "Vue plugin for chrome extension internationalization",
"main": "./dist/vue-chrome-i18n.js",
"module": "./dist/vue-chrome-i18n.js",
"repository": "https://github.com/Xvezda/vue-chrome-i18n",
"author": "Xvezda <[email protected]> (https://xvezda.com)",
"bugs": {
"url": "https://github.com/Xvezda/vue-chrome-i18n",
"email": "[email protected]"
},
"keywords": [
"vue",
"vuejs",
"vue-plugins",
"vue-components",
"chrome-extensions",
"i18n",
"internationalization"
],
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"clean": "rm -rf dist/",
"check": "standard",
"dev": "concurrently \"webpack --watch\" \"webpack-dev-server\"",
"serve": "webpack-dev-server",
"prepublish": "yarn run clean && yarn run check && yarn run build"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"babel-loader": "^8.0.6",
"concurrently": "^5.1.0",
"cross-env": "^6.0.3",
"standard": "^14.3.1",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3"
},
"resolutions": {
"**/serialize-javascript": ">=2.1.1",
"**/minimist": ">=1.2.2",
"**/kind-of": ">=6.0.3"
}
}