-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.67 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": "simple-oauth2-clients",
"version": "0.2.3",
"description": "OAuth 2.0 client configurations (Google, Facebook, GitHub, etc.)",
"keywords": [
"apple",
"auth",
"authentication",
"client",
"credentials",
"facebook",
"github",
"google",
"http",
"oauth 2.0",
"oauth 2",
"oauth",
"oauth2",
"oauth20",
"token"
],
"license": "MIT",
"author": {
"name": "Kriasoft",
"email": "hello@kriasoft.com",
"url": "https://kriasoft.com"
},
"repository": "kriasoft/simple-oauth2-clients",
"contributors": [
"Konstantin Tarkus <hello@tarkus.me> (https://tarkus.me/)"
],
"funding": {
"type": "patreon",
"url": "https://patreon.com/koistya"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint --report-unused-disable-directives .",
"test": "jest",
"build": "babel --env-name production -x \".ts\" --out-dir . \"*.ts\" && tsc"
},
"dependencies": {
"@types/simple-oauth2": "^4.1.0",
"simple-oauth2": "^4.2.0"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@types/simple-oauth2": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"@yarnpkg/pnpify": "^2.4.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"typescript": "^4.2.4"
},
"jest": {
"testEnvironment": "node"
}
}