-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.54 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.54 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
{
"name": "js-security-patterns",
"version": "0.1.0",
"description": "Battle-tested security patterns for JavaScript applications - Rust-level security with native JS syntax",
"main": "index.js",
"scripts": {
"test": "node examples/01-input-validation/test.js && node examples/02-xss-prevention/test.js && node examples/03-eval-alternatives/test.js",
"test:input": "node examples/01-input-validation/test.js",
"test:xss": "node examples/02-xss-prevention/test.js",
"test:eval": "node examples/03-eval-alternatives/test.js",
"test:all": "node test/run-all-tests.js",
"benchmark": "node test/benchmark.js",
"security-audit": "node test/security-audit.js",
"lint": "node test/lint-security.js"
},
"keywords": [
"javascript",
"security",
"xss-prevention",
"input-validation",
"secure-coding",
"owasp",
"cybersecurity",
"patterns",
"best-practices",
"code-injection",
"sanitization",
"eval-alternative",
"web-security",
"frontend-security"
],
"author": "Nexus Studio <nexusstudio100@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Tryboy869/js-security-patterns.git"
},
"bugs": {
"url": "https://github.com/Tryboy869/js-security-patterns/issues"
},
"homepage": "https://github.com/Tryboy869/js-security-patterns#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"benchmark": "^2.1.4"
},
"directories": {
"example": "examples",
"doc": "docs",
"test": "test"
}
}