-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.05 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
{
"name": "@ssense/flip",
"version": "0.0.2",
"description": "A React to Vue Component Transpiler",
"repository": {
"type": "git",
"url": "https://github.com/SSENSE/flip"
},
"bugs": {
"url": "https://github.com/SSENSE/flip/issues"
},
"main": "build/index.js",
"scripts": {
"build": "babel src --presets @babel/env --out-dir build && chmod +x build/index.js",
"test": "NODE_ENV=test mocha tests/**/*.test.js --recursive --require @babel/register --require @babel/polyfill"
},
"bin": {
"flip": "./build/index.js"
},
"keywords": [
"react",
"vue",
"babel"
],
"author": "Quinn Langille <[email protected]>",
"license": "MIT",
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"styled-components": "^3.4.4",
"vue-styled-components": "^1.3.0"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.3",
"@babel/polyfill": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"babel-helper-vue-jsx-merge-props": "file:src/utils/merge-props",
"babel-plugin-jsx-event-modifiers": "^2.0.5",
"babel-plugin-jsx-v-model": "^2.0.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "file:src/utils/vue-jsx",
"commander": "^2.17.1",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-node-resolve": "^3.3.0",
"styled-components": "^4.2.0",
"typescript": "^3.4.5"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0-rc.2",
"@babel/node": "^7.0.0-rc.2",
"@babel/preset-env": "^7.0.0-rc.2",
"@babel/preset-react": "^7.0.0-rc.2",
"@babel/register": "^7.0.0",
"@types/node": "^12.0.2",
"@types/react": "^16.8.18",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.15",
"chai": "^4.2.0",
"fs-extra": "^7.0.0",
"mocha": "4",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0",
"sinon": "^7.0.0"
}
}