-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "@oauth-everything/oauth2-types",
"version": "1.0.2",
"description": "Helper types for @oauth-everything oauth 2.0 strategies.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"build": "tsc -p .",
"clean": "rimraf dist",
"build-full": "npm run clean && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/oauth-everything/oauth2-types.git"
},
"keywords": [
"oauth",
"oauth2",
"typescript"
],
"author": "Tyler Schrock <tschrock123@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/oauth-everything/oauth2-types/issues"
},
"homepage": "https://github.com/oauth-everything/oauth2-types",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.1.0",
"@typescript-eslint/parser": "^2.1.0",
"eslint": "^6.3.0",
"rimraf": "^3.0.0",
"typescript": "^3.6.2"
},
"dependencies": {
"@types/express": "^4.17.2",
"@types/passport-oauth2": "^1.4.8"
}
}