-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 925 Bytes
/
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
{
"name": "@saasak/social-auth",
"version": "1.1.5",
"description": "Helper to authorize social networks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx rimraf dist && tsc -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "npm run build"
},
"keywords": [
"twitter",
"instagram",
"facebook",
"social networks"
],
"author": "Saasak SASU",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.14.0",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"rimraf": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^2.6.7"
}
}