-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "vue-class-migrator",
"version": "0.0.4",
"author": "Victor Cuena Garcia <[email protected]>",
"description": "CLI tool to help migrating vue class components to vue 3 compatible components.",
"bin": {
"vue-class-migrator": "./dist/index.js"
},
"engines": {
"node": "18"
},
"files": [
"dist"
],
"scripts": {
"migrate": "ts-node src/index.ts",
"build": "npx tsc",
"lint": "eslint src --ext .js,.ts",
"test": "jest"
},
"license": "Apache-2.0",
"homepage": "https://github.com/getyourguide/vue-class-migrator#readme",
"repository": {
"type": "git",
"url": "https://github.com/getyourguide/vue-class-migrator.git"
},
"bugs": {
"url": "https://github.com/getyourguide/vue-class-migrator/issues"
},
"keywords": [
"vue",
"class",
"migrate"
],
"dependencies": {
"commander": "^11.0.0",
"ts-morph": "^24.0.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/eslint": "8.44.2",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "8.46.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}