-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
44 lines (44 loc) · 1.55 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
{
"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 *.md topics/*.md",
"generate-diff": "git diff origin/master *.md topics/*.md | grep -v '^-' || echo ''",
"check-link-diff": "npm run generate-diff | node scripts/markdownLinkCheck.js",
"check-link-local": "cat *.md topics/*.md | node scripts/markdownLinkCheck.js",
"watch": "onchange '**/*.md' -v -- npm test"
},
"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": {
"gitbook-cli": "^2.3.0",
"gitbook-plugin-advanced-emoji": "^0.2.1",
"gitbook-plugin-comment": "^1.0.5",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-git-author": "^1.1.2",
"gitbook-plugin-githubcontributors": "^0.1.1",
"gitbook-plugin-localized-footer": "^0.2.2",
"gitbook-plugin-simple-page-toc": "^0.1.0",
"gitbook-plugin-disqus": "0.1.0",
"react": "15.0.1",
"react-dom": "15.0.1",
"markdown-link-check": "^1.2.0",
"markdownlint-cli": "^0.2.0",
"onchange": "^2.5.0"
},
"dependencies": {
"gitbook-plugin-ga": "^1.0.1"
}
}