forked from nuxt-community/nuxt-property-decorator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nuxt-property-decorator",
"version": "2.5.1",
"description": "Property decorators for Nuxt",
"main": "lib/nuxt-property-decorator.umd.js",
"keywords": [
"vue",
"typescript",
"nuxt",
"decorator"
],
"author": "davidbernal",
"contributors": [
{
"name": "Tony BRIET",
"email": "[email protected]"
},
{
"name": "HG",
"email": "[email protected]"
}
],
"license": "MIT",
"files": [
"lib"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"gitHooks": {
"pre-commit": "npm run build"
},
"dependencies": {
"vue-class-component": "7.2.3",
"vue-property-decorator": "^8.3.0",
"vuex": "^3.1.1",
"vuex-class": "^0.3.2"
},
"devDependencies": {
"@std/esm": "^0.26.0",
"@types/jest": "^25.1.2",
"@types/node": "12.11.1",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"rollup": "^1.25.0",
"rollup-plugin-typescript2": "^0.26.0",
"standard-version": "^7.1.0",
"ts-jest": "^25.2.0",
"ts-node": "^8.4.1",
"typescript": "^3.6.4",
"vue": "^2.6.10",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.10",
"yorkie": "^2.0.0"
},
"typings": "./lib/nuxt-property-decorator.d.ts",
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-community/nuxt-property-decorator.git"
},
"bugs": {
"url": "https://github.com/nuxt-community/nuxt-property-decorator/issues"
},
"homepage": "https://github.com/nuxt-community/nuxt-property-decorator#readme"
}