-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "mount-vue-component",
"version": "0.10.2",
"description": "a tiny utility to programatically create and mount Vue 3 components - e.g. a Vue.extend replacement",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "./index.d.ts",
"scripts": {
"build": "rollup -c",
"preversion": "npm run test && npm run build",
"version": "npm publish --access public",
"postversion": "git push --follow-tags",
"test": "NODE_ENV=production node test/mount.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pearofducks/mount-vue-component.git"
},
"keywords": [
"vue-3",
"extend",
"component",
"programatic"
],
"author": "Dave Honneffer",
"license": "MIT",
"bugs": {
"url": "https://github.com/pearofducks/mount-vue-component/issues"
},
"homepage": "https://github.com/pearofducks/mount-vue-component#readme",
"devDependencies": {
"@happy-dom/global-registrator": "^15.6.0",
"happy-dom": "^15.6.0",
"pkg-types": "^1.2.0",
"rollup": "^4.21.2",
"uvu": "^0.5.1",
"vue": "^3.2.37"
}
}