-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
89 lines (89 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "padding-oracle-attacker",
"version": "0.2.4",
"description": "CLI tool and library to execute padding oracle attacks easily",
"license": "MIT",
"repository": "KishanBagaria/padding-oracle-attacker",
"author": {
"name": "Kishan Bagaria",
"email": "[email protected]",
"url": "https://kishanbagaria.com"
},
"engines": {
"node": ">=8"
},
"bin": {
"padding-oracle-attacker": "./dist/bin.js",
"padding-oracle-attack": "./dist/bin.js",
"poattack": "./dist/bin.js"
},
"scripts": {
"build": "tsc",
"clean": "trash dist || rm -rf dist",
"lint": "eslint --ext ts,js src/ test/",
"test": "(yarn lint || npm run lint); ava",
"prepublishOnly": "(yarn clean || npm run clean); (yarn build || npm run build)",
"vuln-server": "node test/helpers/vulnerable-server.js"
},
"keywords": [
"aes",
"cbc",
"cipher-block-chaining",
"cipher",
"encryption",
"decryption",
"cryptography",
"crypto",
"pkcs",
"pkcs5",
"pkcs7"
],
"dependencies": {
"@types/ansi-styles": "^3.2.1",
"@types/bluebird": "^3.5.26",
"@types/bluebird-global": "^3.5.11",
"@types/fs-extra": "^8.0.0",
"@types/got": "^9.4.4",
"@types/keyv": "^3.1.0",
"@types/lodash": "^4.14.125",
"@types/minimist": "^1.2.0",
"@types/node": "^12.0.0",
"@types/table": "^4.0.6",
"@types/tmp": "^0.1.0",
"@types/wrap-ansi": "^3.0.0",
"ansi-styles": "^3.2.1",
"bluebird": "^3.5.4",
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"got": "^9.6.0",
"keyv": "^3.1.0",
"keyv-file": "^0.1.13",
"lodash": "^4.17.11",
"log-update": "^3.2.0",
"minimist": "^1.2.0",
"ow": "^0.12.0",
"p-limit": "^2.2.0",
"pretty-bytes": "^5.2.0",
"table": "^5.4.6",
"tmp-promise": "^2.0.2",
"wrap-ansi": "^5.1.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.7.0",
"@typescript-eslint/parser": "^1.7.0",
"ava": "*",
"body-parser": "^1.19.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"express": "^4.16.4",
"get-port": "^5.0.0",
"ts-node": "^8.1.0",
"typescript": "^3"
},
"ava": {
"files": [
"test/*"
]
}
}