-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 989 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 989 Bytes
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
{
"name": "@knfs-tech/csrf",
"version": "1.1.1",
"description": "Cross-site request forgery module",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "jest --runInBand --force-exit --detectOpenHandles"
},
"files": [
"lib",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/knfs-library/csrf.git"
},
"keywords": [
"security",
"csrf",
"knfs",
"bamimi"
],
"author": "Kent Phung",
"license": "MIT",
"bugs": {
"url": "https://github.com/knfs-library/csrf/issues"
},
"homepage": "https://github.com/knfs-library/csrf#readme",
"devDependencies": {
"body-parser": "^1.20.2",
"chai": "^5.1.1",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"express-session": "^1.18.0",
"jest": "^29.7.0",
"sinon": "^18.0.0",
"supertest": "^7.0.0",
"typescript": "^5.8.3",
"undici-types": "^7.8.0"
}
}