-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.53 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.53 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
52
53
54
55
56
57
58
59
{
"name": "http-eval",
"version": "0.0.3",
"type": "module",
"description": "Eval HTTP POST bodies in NodeJS",
"author": "Ben Creech",
"license": "MIT",
"homepage": "https://github.com/bpcreech/http-eval",
"bin": {
"http-eval": "dist/cli.js"
},
"scripts": {
"build": "pkgroll",
"start": "node dist/cli.js",
"dev": "tsx --watch src/cli.ts",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"format": "eslint src/**/*.ts tests/**/*.ts --fix",
"//": "We don't use jest because of https://github.com/jestjs/jest/issues/9430",
"test": "tsx --test tests/**/*test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpcreech/http-eval.git"
},
"bugs": {
"url": "https://github.com/bpcreech/http-eval/issues"
},
"keywords": [
"http",
"eval",
"RCE"
],
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.19",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"expect": "^29.7.0",
"pkgroll": "^2.0.1",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.17.43",
"express": "^4.18.2",
"yargs": "^17.7.2"
},
"prettier": {
"proseWrap": "always"
}
}