-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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": "vue2-to-3",
"version": "0.4.4",
"type": "module",
"types": "bin/index.d.ts",
"main": "bin/index.js",
"scripts": {
"build": "rimraf ./bin && tsc --build",
"lint": "eslint ./**/*.{ts,js}",
"lint:fix": "eslint ./**/*.{ts,js} --fix",
"prettier": "prettier --config ./.prettierrc --write ./**/*.ts",
"start:parser": "node --loader ts-node/esm --experimental-specifier-resolution=node src/parser/parser",
"start:file": "node --loader ts-node/esm --experimental-specifier-resolution=node src/fileCreator/index",
"do:dev": "node --loader ts-node/esm --experimental-specifier-resolution=node src/index",
"do": "node --experimental-specifier-resolution=node bin/index.js"
},
"peerDependencies": {
"vue": "^2.x"
},
"devDependencies": {
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^6.2.2",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vue": "^2.x",
"vue-template-compiler": "^2.6.11"
},
"bin": {
"migrate": "./bin/index.js"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/IldarDavletyarov/vue2-to-3/issues",
"email": "[email protected]"
},
"keywords": [
"vue",
"vue2",
"vue3",
"migration",
"composition"
],
"description": "Migration helper from Vue 2 to Vue 3",
"author": {
"name": "Ildar Davletyarov",
"email": "[email protected]",
"url": "https://ildar.dev"
},
"contributors": [
{
"name": "Bulat Khaibullin"
}
],
"repository": {
"type": "git",
"url": "https://github.com/IldarDavletyarov/vue2-to-3"
}
}