-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.67 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
{
"name": "vue-class-transformer",
"version": "1.0.2",
"license": "MIT",
"author": "Florent Catiau-Tristant (Kapcash)",
"homepage": "https://github.com/Kapcash/vue-class-transformer#readme",
"bugs": {
"url": "https://github.com/Kapcash/vue-class-transformer/issues"
},
"description": "CLI to transform your vanilla Vue.js components to a Typescript class based syntax.",
"keywords": [
"vue",
"class",
"typescript",
"ast",
"transformer",
"vue-property-decorator",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/Kapcash/vue-class-transformer"
},
"main": "dist/out.js",
"bin": {
"vct": "bin/vct"
},
"files": [
"bin",
"dist"
],
"scripts": {
"start": "node --loader ts-node/esm src/index.ts",
"build": "webpack",
"test": "jest --coverage"
},
"dependencies": {
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"cli-progress": "^3.8.2",
"eslint": "^7.18.0",
"mkdirp": "^1.0.4",
"typescript": "^4.1.3",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.11",
"babel-jest": "^26.6.3",
"copy-webpack-plugin": "^7.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript-parser": "^2.6.1",
"webpack": "^5.13.0",
"webpack-cli": "^4.3.1",
"webpack-node-externals": "^2.5.2"
}
}