forked from google/oss-vulnerability-guide
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 800 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "oss-vulnerability-guide",
"version": "1.0.0",
"description": "A guide on coordinated vulnerability disclosure for open source projects. Includes templates for security policies (security.md) and disclosure notifications.",
"scripts": {
"format": "npx prettier --write . && npx markdownlint --fix '**/*.md' --ignore node_modules --config .github/linters/.markdown-lint.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ossf/oss-vulnerability-guide.git"
},
"author": "",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/ossf/oss-vulnerability-guide/issues"
},
"homepage": "https://github.com/ossf/oss-vulnerability-guide#readme",
"devDependencies": {
"markdownlint-cli": "^0.32.2",
"prettier": "^2.7.1"
}
}