This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 242
/
package.json
67 lines (67 loc) · 2.24 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
{
"name": "vuera",
"description": "Use React in Vue and Vue in React",
"version": "0.2.7",
"repository": "akxcv/vuera",
"author": "Alexander Komarov <[email protected]>",
"license": "MIT",
"main": "dist/vuera.cjs.js",
"modules": "dist/vuera.es.js",
"unpkg": "dist/vuera.iife.js",
"files": ["dist", "babel.js"],
"keywords": ["vue", "react", "interop", "adapter", "migrate", "seamless-integration"],
"peerDependencies": {
"react": ">= 15.2.0",
"react-dom": ">= 15.2.0",
"vue": ">= 2.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"cross-env": "^5.2.0",
"eslint": "3.19.0",
"eslint-config-umbrellio": "^0.4.5",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-vue": "^2.1.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-vue-preprocessor": "1.2.0",
"lint-staged": "^4.2.3",
"prettier": "^1.7.2",
"react": "16",
"react-dom": "16",
"rollup": "0.51",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"vue": "2.5",
"vue-template-compiler": "2.5",
"vue-template-es2015-compiler": "^1.5.3"
},
"scripts": {
"build": "cross-env BABEL_ENV=rollup rollup -c",
"lint": "eslint .",
"test": "cross-env BABEL_ENV=test jest",
"test:coverage": "yarn run test -- --coverage",
"test:watch": "yarn run test -- --watch",
"precommit": "lint-staged && yarn run build && git add dist"
},
"lint-staged": {
"*.json": ["prettier --write", "git add"],
"src/**/*.js": ["prettier --write", "eslint --fix", "git add"],
"tests/**/*.js": ["prettier --write", "eslint --fix", "git add"],
"/*.js": ["prettier --write", "eslint --fix", "git add"],
"babel.js": ["prettier --write", "eslint --fix", "git add"]
}
}