forked from kaorun343/vue-property-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "vue-property-decorator",
"version": "8.2.2",
"description": "property decorators for Vue Component",
"main": "lib/vue-property-decorator.umd.js",
"module": "lib/vue-property-decorator.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": "^24.0.15",
"@types/node": "^12.0.8",
"jest": "^24.8.0",
"reflect-metadata": "^0.1.13",
"rollup": "^1.15.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.2",
"vue": "^2.6.10"
},
"typings": "./lib/vue-property-decorator.d.ts",
"dependencies": {
"vue-class-component": "^7.0.1"
},
"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"
}