-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.44 KB
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
{
"name": "@happysanta/bridge-plus",
"version": "0.0.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": "happysanta",
"scripts": {
"build": "tsc && ./node_modules/.bin/babel src --out-dir dist --extensions '.ts,.tsx'",
"test": "jest",
"lint": "eslint --fix --ext .ts,.tsx src",
"lint-check": "eslint --ext .ts,.tsx src",
"prepublish": "yarn run build",
"pub": "yarn run lint-check && yarn run test && yarn version --patch && yarn publish --new-version $(node -p -e \"require('./package.json').version\")",
"fix-for-link": "rm -rf node_modules/react node_modules/react-dom",
"fix-for-test": "rm -rf node_modules && rm package-lock.json && yarn install",
"docs": "./node_modules/.bin/typedoc --externalPattern 'src/index.ts' --exclude **/*.spec.ts* --excludeExternals --excludeNotExported --out docs src/"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-react-jsx": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.11.2",
"@testing-library/react": "^11.0.2",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vkontakte/eslint-config": "^2.5.0",
"@vkontakte/vkui": "^4.0.0-beta.27",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"eslint": "~6.8.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.5.1",
"gh-pages": "^3.1.0",
"husky": "^5.0.0-beta.0",
"install-peers-cli": "^2.2.0",
"jest": "^26.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"typedoc": "^0.18.0",
"typescript": "^3.9.7",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.12.15",
"exponential-backoff": "^3.1.0",
"query-string": "^6.13.6"
},
"peerDependencies": {
"@vkontakte/vk-bridge": "^2.4.8"
}
}