forked from vuejs/vue-web-component-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"name": "@vue/web-component-wrapper",
"version": "1.2.3",
"description": "wrap a vue component as a web component.",
"main": "dist/vue-wc-wrapper.js",
"unpkg": "dist/vue-wc-wrapper.global.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"lint": "eslint src",
"build": "rollup -c",
"prepare": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/web-component-wrapper.git"
},
"keywords": [
"vue",
"web-component"
],
"author": "Evan You",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuejs/web-component-wrapper/issues"
},
"homepage": "https://github.com/vuejs/web-component-wrapper#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"http-server": "^0.11.1",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"puppeteer": "^1.0.0",
"rollup": "^0.65.2",
"rollup-plugin-babel": "^4.0.3",
"vue": "^2.5.13",
"yorkie": "^1.0.3"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": "plugin:vue-libs/recommended"
},
"dependencies": {
"babel-core": "^6.26.3"
}
}