-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "@squareboat/nest-social-auth",
"version": "0.1.1",
"description": "The social authentication library for your NestJS Applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nestjs",
"google-login",
"linkedin-login",
"nestjs-social-auth",
"social-platforms",
"social-authentication",
"auth-2.0",
"facebook-login",
"linkedin",
"facebook",
"google"
],
"repository": {
"type": "git",
"url": "https://github.com/squareboat/nest-social-auth.git"
},
"bugs": {
"url": "https://github.com/squareboat/nest-social-auth/issues"
},
"homepage": "",
"author": "Piyush Chhabra <[email protected]>",
"private": false,
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch"
},
"devDependencies": {
"@nestjs/common": "^7.6.4",
"@nestjs/core": "^7.6.4",
"reflect-metadata": "^0.1.13",
"typescript": "^4.1.3"
},
"dependencies": {
"rxjs": "^6.6.3",
"@nestjs/axios": "0.0.1"
},
"peerDependencies": {
"@nestjs/common": "^6.7.0 || ^7.0.0",
"@nestjs/core": "^6.7.0 || ^7.0.0"
},
"license": "MIT"
}