-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "passport-figma",
"version": "1.1.0",
"description": "Figma passport strategy for Node.js authentication",
"main": "./lib",
"types": "./lib",
"scripts": {
"test": "jest ./tests",
"build": "tsc -p .",
"watch": "tsc -p . -w",
"prepare": "npm run build"
},
"keywords": [
"passport",
"figma",
"auth",
"oauth",
"identity",
"authentication",
"oauth2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LiamMartens/passport-figma.git"
},
"bugs": {
"url": "https://github.com/LiamMartens/passport-figma/issues"
},
"author": {
"name": "Liam Martens",
"email": "[email protected]",
"url": "https://freighter.studio"
},
"license": "MIT",
"dependencies": {
"passport-oauth2": "^1.5.0"
},
"devDependencies": {
"@types/node": "^13.9.5",
"@types/passport-oauth2": "^1.4.8",
"jest": "^25.0.0",
"typescript": "^3.8.3"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}