-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "react-to-vue",
"version": "1.0.11",
"description": "engine that transforms React component to Vue component",
"scripts": {
"prepublish": "npm run start",
"start": "babel ./src/ -d ./lib/",
"dev": "babel ./src/ -d ./lib/ -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"rtv": "bin/rtv"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vicwang163/react-to-vue.git"
},
"keywords": [
"react",
"vue",
"transformation"
],
"author": "vic.wang",
"license": "ISC",
"bugs": {
"url": "https://github.com/vicwang163/react-to-vue/issues"
},
"homepage": "https://github.com/vicwang163/react-to-vue#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1"
},
"dependencies": {
"babel-eslint": "^8.1.2",
"babel-generator": "^7.0.0-beta.3",
"babel-traverse": "^7.0.0-beta.3",
"babylon": "^7.0.0-beta.3",
"chalk": "^2.3.0",
"commander": "^2.13.0",
"flow-remove-types": "^1.2.3",
"prettier-eslint": "^8.7.0"
}
}