-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.47 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
{
"name": "@mmdzov/pswd",
"version": "1.7.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"start:transpile": "tsc -w",
"start:watch": "nodemon dist/index.ts",
"start": "concurrently npm:start:*",
"test": "mocha -r ts-node/register tests/*.ts tests/**/*.ts",
"test:watch": "mocha -r ts-node/register --watch --watch-files tests/*.ts tests/**/*.ts src/**/*.ts src/*.ts",
"example": "nodemon dist/example/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mytls/pswd.git"
},
"types": "dist/index.d.ts",
"author": "mmdzov",
"license": "ISC",
"bugs": {
"url": "https://github.com/mytls/pswd/issues"
},
"keywords": [
"authorization",
"authentication",
"auth",
"jwt",
"jwt blacklist",
"jsonwebtoken blacklist",
"encryption"
],
"homepage": "https://github.com/mytls/pswd#readme",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/crypto-js": "^4.1.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/mocha": "^9.1.0",
"@types/nanoid": "^3.0.0",
"@types/node": "^17.0.12",
"chai": "^4.3.4",
"concurrently": "^7.0.0",
"mocha": "^9.2.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"chai-http": "^4.3.0",
"crypto-js": "^4.1.1",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.2.0",
"node-mocks-http": "^1.11.0",
"redis": "^4.0.2"
}
}