-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "suspicious-session",
"version": "0.1.3",
"description": "A session manager middleware for express.js with AES encription.",
"main": "./dist/index.js",
"scripts": {
"test": "clear & mocha --require ts-node/register ./src/**/*.test.ts",
"start": "ts-node ./src/test.ts",
"prepare": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/sleep-written/suspicious-session"
},
"keywords": [
"session",
"aes",
"crypto",
"cryptography",
"uuid",
"rfc4122",
"express",
"middleware",
"typescript",
"sus"
],
"files": [
"dist"
],
"author": "sleep-written",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/cookie": "^0.5.2",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.3",
"@types/uuid": "^9.0.4",
"chai": "^4.3.8",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cookie": "^0.5.0",
"express": "^4.18.2",
"uuid": "^9.0.1"
}
}