-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "vue-vnode-syringe",
"version": "0.0.0-semantic-release",
"description": "Add attributes and event-listeners to <slot> content",
"keywords": [
"vue",
"vnode",
"mutate",
"modify",
"merge",
"overwrite",
"attributes",
"props",
"event-listeners"
],
"license": "MIT",
"repository": "privatenumber/vue-vnode-syringe",
"funding": "https://github.com/privatenumber/vue-vnode-syringe?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"files": [
"dist"
],
"main": "dist/vnode-syringe.js",
"module": "dist/vnode-syringe.esm.js",
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"dev-build": "rollup -cw",
"dev": "jest --watchAll",
"test": "jest",
"lint": "xo"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"xo",
"jest --bail --findRelatedTests"
]
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@vue/test-utils": "^1.1.0",
"babel-jest": "^26.5.2",
"core-js": "^3.6.5",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lint-staged": "^10.4.0",
"rollup": "^2.30.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-terser": "^7.0.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"xo": "^0.33.1"
}
}