-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "crypto-parser-express",
"version": "1.0.4",
"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": {
"build": "tsc",
"dev": "tsc -w",
"test": "NODE_ENV=test node_modules/.bin/_mocha --exit -r tests/lib/spec-helper.js tests/"
},
"author": "Adolfo Segura Hall",
"license": "MIT",
"devDependencies": {
"@types/node": "^12.7.9",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cookie": "^0.4.0",
"debug": "^4.1.1",
"express": "^4.17.1",
"mocha": "^6.2.1",
"typescript": "^2.9.2",
"uuid": "^3.3.3"
},
"dependencies": {
"node-laravel-encryptor": "^2.0.5"
},
"keywords": [
"laravel",
"crypto",
"nodejs",
"cookie",
"cookie-parser"
],
"homepage": "https://github.com/adsegura/crypto-parser-express/blob/master/README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/adsegura/crypto-parser-express.git"
}
}