-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
70 lines (70 loc) · 2.2 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
70
{
"name": "react-oauth-popup",
"description": "Open a simple popup to authenticate via oAuth",
"version": "1.0.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --env=jsdom",
"lint": "eslint ./src",
"lint:branch-name": "branch-name-lint",
"build": "babel -d ./dist ./src --copy-files --source-maps --extensions \".ts,.tsx\" && tsc --emitDeclarationOnly",
"prepublishOnly": "yarn build",
"postrelease": "git push --follow-tags --no-verify",
"release": "standard-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "branch-name-lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/XD2Sketch/react-oauth-popup.git"
},
"bugs": {
"url": "https://github.com/XD2Sketch/react-oauth-popup/issues"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/parser": "^7.15.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@babel/register": "^7.15.3",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/react": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.6",
"branch-name-lint": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^13.0.1",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"standard-version": "^9.3.1",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react": ">17",
"react-dom": ">17"
}
}