-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 2.46 KB
/
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
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
{
"name": "security",
"version": "0.1.0",
"description": "LoopBack Security Repository",
"main": "index.js",
"private": true,
"scripts": {
"postinstall": "husky install && npm run build",
"install": "npm run install:vendor:secvisogram",
"install:vendor:secvisogram": "( cd vendors/secvisogram && npm ci --ignore-scripts && cd app && npm ci --ignore-scripts )",
"build": "npm run build:vendor:secvisogram",
"build:vendor:secvisogram": "( cd vendors/secvisogram/app && npx --no-install babel --copy-files --delete-dir-on-start --env-name=test --out-dir=dist lib && cat vendor/first/cvsscalc30.js vendor/first/cvsscalc31.js >> dist/shared/Core/entities/DocumentEntity/mandatoryTest_6_1_9.js )",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint": "lb-eslint --report-unused-disable-directives .",
"eslint:fix": "npm run eslint -- --fix",
"prettier:cli": "lb-prettier '**/*.ts' '**/*.js' 'advisories/lbsa*.csaf.json' '**/*.md'",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"ts-node": "ts-node --project=scripts/tsconfig.json",
"validate": "npm run validate-csaf20 && npm run validate-osv",
"generate-csaf20-product-tree": "npm run ts-node -- scripts/advisories/generate-csaf20-product-tree.ts",
"validate-csaf20": "npm run ts-node -- scripts/advisories/validate-csaf20.ts",
"validate-osv": "npm run ts-node -- scripts/advisories/validate-osv.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loopbackio/security.git"
},
"engines": {
"node": "12 || 14 || 16 || 17",
"npm": ">=7"
},
"author": "LoopBack Contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/loopbackio/security/issues"
},
"homepage": "https://github.com/loopbackio/security#readme",
"devDependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@loopback/build": "^8.1.0",
"@loopback/eslint-config": "^12.0.2",
"@types/glob": "^7.2.0",
"@types/semver": "^7.3.9",
"ajv": "^8.10.0",
"ajv-formats": "^2.1.1",
"eslint": "^8.9.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"lockfile-lint": "^4.7.3",
"secvisogram": "file:./vendors/secvisogram/app",
"semver": "^7.3.5",
"ts-node": "^10.5.0"
}
}