forked from vuejs/vue-codemod
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
78 lines (78 loc) · 2.1 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
{
"name": "@originjs/vue-codemod",
"version": "1.1.1",
"description": "Vue codemod scripts",
"main": "dist/index.js",
"bin": "./dist/bin/vue-codemod.js",
"files": [
"dist",
"!dist/**/__tests__/**"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"playground": "npm run build && cd ./playground && npm install && npm run dev",
"test": "jest",
"test:cover": "jest --coverage",
"fix": "npm-run-all --parallel lint:fix format:fix",
"lint:codes": "eslint . --ext .ts",
"lint:fix": "npm run lint:codes --fix",
"format:prettier": "prettier --config .prettierrc .",
"format:fix": "prettier --write --config .prettierrc ."
},
"repository": {
"type": "git",
"url": "https://github.com/originjs/vue-codemod.git"
},
"author": "ygj6",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/types": "^7.12.12",
"@types/jscodeshift": "^0.7.1",
"@vue/compiler-core": "~3.0.5",
"@vue/compiler-dom": "~3.0.5",
"cli-progress": "^3.9.0",
"debug": "^4.1.1",
"fs-extra": "^10.0.0",
"globby": "^11.0.2",
"jscodeshift": "^0.11.0",
"lru-cache": "^6.0.0",
"readline-sync": "^1.4.10",
"source-map": "^0.6.1",
"table": "^6.7.1",
"vue-eslint-parser": "^7.6.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/debug": "^4.1.5",
"@types/eslint-scope": "^3.7.0",
"@types/eslint-visitor-keys": "^1.0.0",
"@types/fs-extra": "^9.0.12",
"@types/jest": "^26.0.3",
"@types/lodash": "^4.14.170",
"@types/node": "^12.12.47",
"@types/readline-sync": "^1.4.3",
"@types/yargs": "^15.0.4",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.29.0",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-jest": "^26.1.1",
"typescript": "^4.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
},
"engines": {
"node": ">= 10.0"
}
}