-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (54 loc) · 1.36 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
{
"name": "ispmpay",
"version": "1.0.0",
"description": "A PCI DSS-compliant payment security package with encryption, authentication, rate limiting, and logging.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "jest",
"lint": "eslint . --ext .js",
"format": "prettier --write .",
"build": "npm run lint && npm run test"
},
"dependencies": {
"express": "^4.18.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"compression": "^1.7.4",
"express-rate-limit": "^6.10.0",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.0",
"node-jose": "^2.1.0",
"winston": "^3.8.2",
"express-session": "^1.17.3"
},
"devDependencies": {
"nodemon": "^3.0.2",
"jest": "^29.7.0",
"eslint": "^8.51.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=16.0.0"
},
"author": "ISRDO Security Team",
"license": "MIT",
"keywords": [
"security",
"payment",
"PCI-DSS",
"encryption",
"authentication",
"rate-limiting",
"logging"
],
"repository": {
"type": "git",
"url": "https://github.com/isrdo/isrdosec-payment.git"
},
"bugs": {
"url": "https://github.com/isrdo/isrdosec-payment/issues"
}
}