-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.85 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
{
"name": "@greatsumini/react-facebook-login",
"version": "3.4.0",
"keywords": [
"react",
"reactjs",
"facebook",
"oauth",
"typescript"
],
"description": "Well-typed React Component for Facebook Login",
"main": "dist/index.js",
"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"
},
"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 || ^19.0.0 || ^20.0.0 || ^21.0.0"
},
"devDependencies": {
"@babel/core": "8.0.1",
"@mdx-js/react": "3.1.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@types/jest": "30.0.0",
"@types/node": "24.13.2",
"@types/react": "18.3.31",
"@types/testing-library__jest-dom": "5.14.9",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-loader": "10.1.1",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"npm-run-all2": "9.0.2",
"prettier": "3.8.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.1.3",
"ts-jest": "29.4.11",
"typescript": "5.5.4"
}
}