-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "@sf/web-component-wrapper",
"version": "1.0.0",
"description": "wrap a sf component as a web component. fork from vue wrapper",
"main": "dist/sf-wc-wrapper.js",
"private": false,
"files": [
"dist"
],
"scripts": {
"test": "jest"
},
"keywords": [
"vue",
"web-component"
],
"author": "Özgür Çimen",
"license": "MIT",
"homepage": "https://github.com/vuejs/web-component-wrapper#readme",
"repository": {
"type": "git",
"url": "https://github.com/kocdigital/sf-component-wrapper.git"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-plugin-vue-libs": "^2.1.0",
"http-server": "^0.11.1",
"jest": "^22.1.4",
"lint-staged": "^6.1.0",
"puppeteer": "^1.0.0",
"rollup": "^0.55.3",
"vue": "^2.5.13",
"yorkie": "^1.0.3"
},
"eslintConfig": {
"env": {
"browser": true
},
"extends": "plugin:vue-libs/recommended"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}