-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.29 KB
/
package.json
File metadata and controls
42 lines (42 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
{
"name": "telecom-security-documents",
"version": "1.0.0",
"description": "Comprehensive collection of telecommunications security documentation and resources",
"main": "index.html",
"scripts": {
"start": "http-server -p 8080 -o",
"generate": "node scripts/generate-from-yaml.js",
"generate:yaml": "node scripts/generate-from-yaml.js",
"generate:watch": "nodemon scripts/generate-from-yaml.js",
"build": "npm run generate:yaml && npm run seo && npm run optimize:images",
"validate": "node scripts/check-errors.js",
"seo": "node scripts/generate-sitemap.js",
"test": "echo \"No tests specified\" && exit 0",
"optimize:images": "node scripts/optimize-images.js",
"images:gallery": "node scripts/optimize-images.js && echo 'Image gallery ready at images.html'"
},
"repository": {
"type": "git",
"url": "https://github.com/TelcoSec/Telecom-Security-Documents.git"
},
"homepage": "https://library.telco-sec.com",
"keywords": [
"telecom",
"security",
"4g",
"5g",
"sim-cards",
"network-security",
"telecommunications"
],
"author": "Telecom Security Team",
"license": "MIT",
"devDependencies": {
"http-server": "^14.1.1",
"nodemon": "^3.0.1",
"js-yaml": "^4.1.0"
},
"engines": {
"node": ">=14.0.0"
}
}