-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
73 lines (73 loc) · 2.31 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
{
"name": "vue-facing-decorator",
"version": "4.0.0-beta.1",
"description": "Vue typescript class and decorator based component.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"type": "commonjs",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/cjs/index.js"
},
"./dist/index-return-cons.js": {
"require": "./dist/cjs/index-return-cons.js",
"import": "./dist/esm/index-return-cons.js",
"default": "./dist/cjs/index-return-cons.js"
}
},
"keywords": [
"vue",
"class",
"typescript",
"decorator",
"vue decorator",
"vue component",
"sfc",
"vue class component",
"vue component decorator"
],
"scripts": {
"test-build": "npm run build-test",
"build-test": "npm run build && npm run test",
"test": "npm run test-stage2 && npm run test-stage3",
"test-stage2": "env TS_NODE_PROJECT='./test/tsconfig/tsconfig.deco-stage2.json' mocha -r ts-node/register --project ./test/tsconfig.json test/test.ts",
"test-stage3": "env TS_NODE_PROJECT='./test/tsconfig/tsconfig.deco-stage3.json' mocha -r ts-node/register --project ./test/tsconfig.json test/test.ts",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "./node_modules/.bin/tsc --project ./tsconfig/tsconfig.cjs.json",
"build:esm": "./node_modules/.bin/tsc --project ./tsconfig/tsconfig.esm.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"watch": "./node_modules/.bin/tsc -outDir dist/esm -module ES6 --watch"
},
"author": "",
"license": "MIT",
"peerDependencies": {
"vue": "^3.0.0"
},
"dependencies": {
"facing-metadata": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vue/test-utils": "^2.0.2",
"chai": "^4.3.6",
"eslint": "^8.35.0",
"jsdom": "^20.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"ts-node": "^10.8.1",
"typescript": "^5.1.6",
"vue": "^3.2.37"
},
"homepage": "https://github.com/facing-dev/vue-facing-decorator",
"repository": {
"type": "git",
"url": "git@github.com:facing-dev/vue-facing-decorator.git"
}
}