-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
62 lines (62 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
55
56
57
58
59
60
61
62
{
"name": "vue-codemod",
"version": "0.0.5",
"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 -C ./playground run dev",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/vuejs/vue-codemod.git"
},
"author": "Haoqun Jiang",
"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",
"debug": "^4.1.1",
"globby": "^11.0.2",
"jscodeshift": "^0.11.0",
"lru-cache": "^6.0.0",
"source-map": "^0.6.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.3",
"@types/node": "^12.12.47",
"@types/yargs": "^15.0.4",
"jest": "^26.1.0",
"prettier": "^2.0.4",
"ts-jest": "^26.1.1",
"typescript": "^4.1.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">= 10.0"
}
}