forked from AdSegura/crypto-parser-express
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"name": "@21jumpclick/cookie-parser",
"publishConfig": {
"access": "public"
},
"version": "2.4.0",
"engines": {
"node": ">=8.16.1",
"npm": ">=6.4.1",
"express": ">=4.1.1"
},
"description": "Express Response Cookie override to add crypto cookie and cookie-parser module replacement",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf lib",
"build": "tsup src/index.ts --format cjs,esm --dts",
"prebuild": "tsc",
"prepack": "npm run clean && npm run build",
"dev": "tsc -w"
},
"author": "Adolfo Segura Hall",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.5",
"@types/uuid": "^9.0.8",
"body-parser": "^1.20.2",
"chai": "^5.1.0",
"chai-http": "^4.4.0",
"concurrently": "^8.2.2",
"cookie": "^0.6.0",
"debug": "^4.3.4",
"express": "^4.19.2",
"mocha": "^10.4.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.4.4",
"uuid": "^9.0.1"
},
"dependencies": {
"php-serialize": "^4.1.1",
"socket.io": "^4.7.5"
},
"keywords": [
"laravel",
"crypto",
"nodejs",
"cookie",
"cookie-parser"
]
}