-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.29 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.29 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
{
"name": "@prizemates/http-firewall",
"version": "1.0.3",
"description": "HTTP Firewall based on Spring Security HttpFirewall",
"private": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"start": "node lib/demo/demo.js",
"demo": "node lib/demo/demo.js",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"jest": {
"testMatch": [
"**/*.tests.ts"
],
"preset" : "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+ssh://github.com:Reloadly/http-firewall.git"
},
"keywords": [
"HTTP",
"Firewall",
"Security"
],
"author": "Arun Patra",
"license": "Apache-2.0",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"jest": "^29.3.1",
"ts-jest": "^29.0.5",
"prettier": "^2.8.3",
"supertest": "^6.3.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"typescript": "^4.9.4"
}
}