forked from dwqs/vue-to-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.75 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": "vue-to-react",
"version": "1.0.0",
"description": "Try to transform Vue component to React component",
"author": "[email protected]",
"license": "MIT",
"private": false,
"bin": {
"vtr": "bin/vtr"
},
"files": [
"src",
"bin",
"LICENSE",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dwqs/vue-to-react.git"
},
"keywords": [
"react",
"vue",
"transformation",
"vue-to-react"
],
"bugs": {
"url": "https://github.com/dwqs/vue-to-react/issues"
},
"homepage": "https://github.com/dwqs/vue-to-react#readme",
"scripts": {
"prepush": "npm run ilint -q",
"commitmsg": "npx commitlint -e",
"ilint": "npx eslint src/**/*.js",
"fix": "npx eslint --fix src/**/*.js"
},
"dependencies": {
"babel-generator": "^6.26.1",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"babylon": "^6.18.0",
"chalk": "^2.3.2",
"commander": "^2.15.1",
"inquirer": "^5.2.0",
"prettier-eslint": "^8.8.1",
"vue-template-compiler": "^2.5.16"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-angular": "^6.1.3",
"babel-eslint": "^8.2.2",
"babel-preset-env": "^1.6.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3"
},
"engines": {
"node": "> 8.1.4",
"npm": ">= 5.2.0"
}
}