-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 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
{
"name": "db-card-pwa",
"version": "4.6.0",
"description": "NFC Digital Business Card PWA with Security Enhancements",
"main": "pwa-card-storage/src/app.js",
"scripts": {
"lint": "eslint . --ext .js --ignore-path .gitignore",
"lint:fix": "eslint . --ext .js --fix --ignore-path .gitignore",
"lint:security": "eslint pwa-card-storage/src --ext .js --config .eslintrc.security.js",
"test:security": "node test-security-suite.js",
"test:log-injection": "node test-log-001-verification.js",
"validate:security": "npm run lint:security && npm run test:security",
"build": "echo 'Static PWA - no build required'",
"serve": "python3 -m http.server 8000",
"serve:https": "python3 -m http.server 8443 --bind 127.0.0.1",
"deploy:check": "npm run validate:security && echo 'Security validation passed'"
},
"keywords": [
"nfc",
"digital-business-card",
"pwa",
"security",
"privacy-first",
"taiwan",
"moda"
],
"author": "Ministry of Digital Affairs, Taiwan",
"license": "MIT",
"type": "module",
"devDependencies": {
"eslint": "^9.33.0",
"@eslint/js": "^9.33.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/moda-gov-tw/DB-Card.git"
},
"bugs": {
"url": "https://github.com/moda-gov-tw/DB-Card/issues"
},
"homepage": "https://github.com/moda-gov-tw/DB-Card#readme",
"eslintConfig": {
"extends": ["./eslint.config.js"]
}
}