forked from kaorun343/vue-property-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.13 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
{
"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",
"jest": "^26.6.3",
"reflect-metadata": "^0.1.13",
"rollup": "^2.33.3",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2",
"vue": "^2.6.10",
"vue-class-component": "^7.2.3"
},
"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"
}