forked from greatSumini/react-facebook-login
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.9 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
{
"name": "@greatsumini/react-facebook-login",
"version": "3.3.3",
"keywords": [
"react",
"reactjs",
"facebook",
"oauth",
"typescript"
],
"description": "Well-typed React Component for Facebook Login",
"main": "dist/index.js",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"check:lint": "eslint \"src/**/*.{ts,tsx}\" --fix",
"check:type": "tsc --noEmit",
"check:test": "jest",
"check": "run-p check:*",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"prepublish:npm": "npm run check && npm run build",
"publish:npm": "npm publish --public",
"prepack": "tsc",
"prepare": "tsc"
},
"author": "greatSumini <greatSumini@gmail.com> (https://sumini.dev)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/greatSumini/react-facebook-login.git"
},
"bugs": {
"url": "https://github.com/greatSumini/react-facebook-login/issues"
},
"homepage": "https://github.com/greatSumini/react-facebook-login",
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@mdx-js/react": "3.0.1",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.3.1",
"@types/jest": "29.5.12",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/testing-library__jest-dom": "5.14.9",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-loader": "9.1.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.2",
"typescript": "5.4.5"
}
}