-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "super-jwt",
"version": "0.2.1",
"description": "Super-JWT helps to authenticate your users based on Superfluid streams using JSON Web Tokens (JWT)",
"author": "Salman Dabbakuti",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"test": "mocha --r ts-node/register 'test/**/*.ts'",
"build": "tsc"
},
"keywords": [
"superfluid",
"superjwt",
"superfluid-auth"
],
"dependencies": {
"graphql": "^16.8.1",
"graphql-request": "^6.1.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/chai-as-promised": "^7.1.8",
"@types/jsonwebtoken": "^9.0.5",
"@types/mocha": "^10.0.4",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Salmandabbakuti/super-jwt.git"
},
"bugs": {
"url": "https://github.com/Salmandabbakuti/super-jwt/issues"
}
}