-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
34 lines (34 loc) · 978 Bytes
/
package.json
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
{
"name": "security-audit",
"version": "1.0.0",
"description": "Security Audit for Theia Applications",
"main": "audit.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@types/node": "^12.11.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"scripts": {
"clean": "(cd output && rm -rf audit.jsonl && touch audit.jsonl)",
"audit": "(cd theia && yarn audit --json --level=moderate > ../output/audit.jsonl)",
"parse": "(cd src && tsc && node --max-old-space-size=4096 dist/audit-parser.js)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eclipse-theia/security-audit.git"
},
"keywords": [
"security",
"audit",
"theia"
],
"author": "Vincent Fugnitto",
"license": "EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0",
"bugs": {
"url": "https://github.com/eclipse-theia/security-audit/issues"
},
"homepage": "https://github.com/eclipse-theia/security-audit#readme"
}