-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 928 Bytes
/
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
{
"name": "vue-migration",
"version": "2.0.3",
"description": "codemod from nuxt 2(vue 2 syntax) code to nuxt 3(vue 3 composition api).",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"test": "jest"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1"
},
"bin": {
"vue-migration": "src/index.js"
},
"dependencies": {
"chalk": "^4.1.2",
"vue-codemod": "^0.0.5",
"yargs": "^17.7.2"
},
"keywords": [
"vue-migration",
"vue migration",
"nuxt migration",
"nuxt",
"vue",
"vue2"
],
"repository": {
"type": "git",
"url": "https://github.com/bippan1407/vue-migration.git"
},
"homepage": "https://bippan1407.github.io/vue-migration-documentation/"
}