-
-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 686 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "knowledge-base-content-validator",
"version": "1.0.0",
"description": "Validate content for Developer Experience Knowledge Base",
"main": "index.js",
"repository": "git@github.com:DXHeroes/knowledge-base-content.git",
"author": "Prokop Simek <prokop.simek@dxheroes.io>",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"validate": "ts-node dangerfile.ts",
"format:fix": "prettier \"**/*.md\" --write"
},
"devDependencies": {
"@types/node-fetch": "^2.5.3",
"danger": "^9.2.4",
"node-fetch": "^3.1.1",
"prettier": "^1.19.1",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
},
"dependencies": {
"yarn": "^1.22.10"
}
}