forked from kaorun343/vue-property-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.26 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
{
"name": "vue-property-decorator",
"version": "9.1.2",
"description": "property decorators for Vue Component",
"main": "lib/index.umd.js",
"module": "lib/index.js",
"keywords": [
"vue",
"typescript",
"decorator"
],
"author": "kaorun343",
"license": "MIT",
"directories": {
"tests": "tests"
},
"scripts": {
"build": "tsc -p ./src/tsconfig.json && rollup -c",
"test": "jest"
},
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@vue/test-utils": "^1.1.3",
"jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rollup": "^2.33.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"vue": "^2.6.12",
"vue-class-component": "^7.2.3",
"vue-template-compiler": "^2.6.12"
},
"typings": "./lib/index.d.ts",
"dependencies": {},
"peerDependencies": {
"vue": "*",
"vue-class-component": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaorun343/vue-property-decorator.git"
},
"bugs": {
"url": "https://github.com/kaorun343/vue-property-decorator/issues"
},
"homepage": "https://github.com/kaorun343/vue-property-decorator#readme"
}