forked from kaorun343/vue-property-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "vue-property-decorator",
"version": "7.2.0",
"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": {
"test": "test"
},
"scripts": {
"build": "tsc -p src/tsconfig.json && rollup -c",
"test": "webpack --config ./test/webpack.config.js && ava test/decorator.spec.js"
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^8.0.47",
"ava": "^0.23.0",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-typescript": "^0.8.1",
"ts-loader": "^4.3.0",
"typescript": "^2.6.1",
"vue": "^2.5.3",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3"
},
"typings": "./lib/vue-property-decorator.d.ts",
"dependencies": {
"vue-class-component": "^6.2.0"
},
"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"
}