forked from ThoughtWorksInc/guia-de-desenvolvimento-tecnico
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.28 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
{
"name": "guia-de-desenvolvimento-tecnico",
"version": "0.0.1",
"description": "Guia de Desenvolvimento Técnico",
"main": "index.js",
"scripts": {
"start": "gitbook serve",
"build": "gitbook build",
"test": "markdownlint --config lint.json {.,topics}/*.md",
"generate-diff": "git diff origin/master {.,topics}/*.md | grep -v '^-'",
"check-link-diff": "npm run generate-diff | node markdownLinkCheck.js",
"check-link-local": "cat *.md topics/*.md | node markdownLinkCheck.js",
"watch": "onchange '**/*.md' -v -- npm test",
"deploy": "npm run build && gh-pages -d _book"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ThoughtWorksInc/guia-de-desenvolvimento-tecnico.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ThoughtWorksInc/guia-de-desenvolvimento-tecnico/issues"
},
"homepage": "https://github.com/ThoughtWorksInc/guia-de-desenvolvimento-tecnico#readme",
"devDependencies": {
"gh-pages": "^0.11.0",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-advanced-emoji": "^0.2.1",
"gitbook-plugin-localized-footer": "^0.2.2",
"gitbook-plugin-simple-page-toc": "^0.1.0",
"markdown-link-check": "^1.2.0",
"markdownlint-cli": "^0.2.0",
"onchange": "^2.5.0"
}
}