-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "juicy-statistics",
"version": "1.1.0",
"description": "Statistics extractor & visualizer for OWASP Juice Shop",
"type": "commonjs",
"scripts": {
"build": "tsc && mkdirp dist/statsData dist/views && copyfiles \"statsData/*.json\" dist && copyfiles \"views/*.ejs\" dist",
"start": "node dist/index.js",
"test": "c8 npx tsx tests/*.spec.ts",
"collect": "node dist/extractors/collect.js",
"lint": "eslint index.ts extractors public tests --ext .ts",
"lint:fix": "eslint index.ts extractors public tests --ext .ts --fix",
"format": "prettier --write \"views/**/*.ejs\""
},
"c8": {
"all": true,
"include": [
"extractors/*.ts"
],
"exclude": [
"node_modules/**",
"tests/**",
"dist",
"public"
],
"report-dir": "./build/reports/coverage",
"reporter": [
"lcov",
"text-summary"
]
},
"license": "MIT",
"dependencies": {
"ejs": "^3.1.6",
"express": "^4.17.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"c8": "^10.1.3",
"copyfiles": "^2.4.1",
"eslint": "^8.57.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"mkdirp": "^3.0.1",
"prettier": "^3.5.3",
"prettier-plugin-ejs": "^1.0.3",
"sinon-chai": "^3.7.0",
"standard": "^17.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.2.2"
},
"standard": {
"env": [
"node",
"mocha"
],
"globals": [
"it",
"describe",
"google",
"npm",
"sf",
"docJs",
"docJsCtf",
"github",
"githubReleases",
"categories",
"tags",
"spamStats",
"dockerImageSizes",
"challengeCounts"
]
},
"engines": {
"node": "20 - 24"
}
}