forked from wonderful-panda/vue-tsx-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.42 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
88
89
90
91
92
93
94
95
{
"name": "vue-tsx-support",
"version": "3.0.2",
"description": "TSX (JSX for TypeScript) support library for Vue",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w",
"prettier": "prettier --list-different \"{src,types,options,test}/**/*.{ts,tsx}\"",
"prettier:fix": "prettier --write \"{src,types,options,test}/**/*.{ts,tsx}\"",
"jest": "jest",
"tsc-test": "node test/tsc/runner.js",
"test": "npm-run-all prettier tsc-test jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wonderful-panda/vue-tsx-support.git"
},
"keywords": [
"Vue",
"TypeScript",
"JSX",
"TSX"
],
"author": "Iwata Hidetaka <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wonderful-panda/vue-tsx-support/issues"
},
"homepage": "https://github.com/wonderful-panda/vue-tsx-support#readme",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-syntax-jsx": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@types/jest": "^25.2.2",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/composition-api": "^1.0.0-beta.17",
"@vue/test-utils": "1.0.2",
"babel-jest": "<26.0.0",
"glob": "^7.1.6",
"hoek": "^6.1.3",
"jest": "<26.0.0",
"lodash": "^4.17.14",
"mixin-deep": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"tsc-test": "^0.3.1",
"typescript": "~3.8.0",
"vue": "2.6.12",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.0.2",
"vue-router": "^3.4.7",
"vue-template-compiler": "2.6.12"
},
"peerDependencies": {
"typescript": ">=3.8.0",
"vue": ">=2.6.0"
},
"prettier": {
"printWidth": 100,
"trailingComma": "none",
"arrowParens": "avoid"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx",
"json"
],
"moduleNameMapper": {
"^vue$": "<rootDir>/node_modules/vue/dist/vue.js"
},
"testRegex": "test/jest/(.*)\\.tsx?$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "test/jest/tsconfig.json",
"babelConfig": {
"presets": [
"@babel/env",
"@vue/babel-preset-jsx"
]
}
}
}
}
}