UNPKG

2.56 kBJSONView Raw
1{
2 "name": "nuxt-property-decorator",
3 "version": "2.9.1",
4 "description": "Property decorators for Nuxt",
5 "browser": "lib/nuxt-property-decorator.umd.js",
6 "main": "lib/nuxt-property-decorator.common.js",
7 "typings": "lib/nuxt-property-decorator.d.ts",
8 "module": "lib/nuxt-property-decorator.esm.js",
9 "keywords": [
10 "vue",
11 "typescript",
12 "nuxt",
13 "decorator"
14 ],
15 "author": "davidbernal",
16 "contributors": [
17 {
18 "name": "Tony BRIET",
19 "email": "tony.briet@viacesi.fr"
20 },
21 {
22 "name": "HG",
23 "email": "husayt@gmail.com"
24 }
25 ],
26 "license": "MIT",
27 "files": [
28 "lib"
29 ],
30 "directories": {
31 "lib": "lib",
32 "test": "test"
33 },
34 "scripts": {
35 "build": "rollup -c",
36 "build:full": "npm run build && npm run apiextract && npm run tsdoc",
37 "test": "jest",
38 "apiextract": "api-extractor run --local --verbose",
39 "tsdoc": "typedoc --excludeNotExported --mode library --out docs/ src/",
40 "release": "standard-version && git push --follow-tags && npm publish"
41 },
42 "gitHooks": {
43 "pre-commit": "npm run build:full"
44 },
45 "dependencies": {
46 "vue-class-component": "^7.2.6",
47 "vue-property-decorator": "^9.0.0",
48 "vuex-class": "^0.3.2",
49 "vuex-module-decorators": "^1.0.1"
50 },
51 "devDependencies": {
52 "@microsoft/api-extractor": "^7.9.22",
53 "@std/esm": "^0.26.0",
54 "@types/jest": "^26.0.4",
55 "@types/node": "12.11.1",
56 "@vue/test-utils": "^1.0.0",
57 "babel-jest": "^26.3.0",
58 "jest": "^26.4.2",
59 "rollup": "^2.28.1",
60 "rollup-plugin-typescript2": "^0.29.0",
61 "standard-version": "^9.0.0",
62 "ts-jest": "^26.4.0",
63 "ts-node": "^9.0.0",
64 "typedoc": "0.17.0-3",
65 "typescript": "^4.0.3",
66 "vue": "^2.6.12",
67 "vue-jest": "^3.0.7",
68 "vue-template-compiler": "^2.6.12",
69 "vuex": "^3.5.1",
70 "yorkie": "^2.0.0"
71 },
72 "jest": {
73 "transform": {
74 "^.+\\.tsx?$": "ts-jest",
75 "^.+\\.js$": "<rootDir>/node_modules/babel-jest"
76 },
77 "testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
78 "moduleFileExtensions": [
79 "ts",
80 "tsx",
81 "js",
82 "jsx",
83 "json",
84 "node"
85 ]
86 },
87 "repository": {
88 "type": "git",
89 "url": "git+https://github.com/nuxt-community/nuxt-property-decorator.git"
90 },
91 "bugs": {
92 "url": "https://github.com/nuxt-community/nuxt-property-decorator/issues"
93 },
94 "homepage": "https://github.com/nuxt-community/nuxt-property-decorator#readme"
95}