-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
36 lines (36 loc) · 1.16 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": "mostly-adequate-guide-es",
"version": "1.0.0",
"description": "La Guía del Profesor Frisby en su Mayor Parte Adecuada para la Programación Funcional",
"dependencies": {
"gitbook-plugin-exercises": "git+https://github.com/MostlyAdequate/plugin-exercises.git",
"gitbook-plugin-include-codeblock": "^3.2.3"
},
"devDependencies": {
"gitbook-cli": "^2.3.2"
},
"scripts": {
"setup": "$(npm bin)/gitbook install",
"start": "$(npm bin)/gitbook serve",
"generate-summary": "perl .generate-summary.pl README.md ch*-es.md appendix_*-es.md > SUMMARY-es.md",
"generate-cover": "sh ./.generate-cover.sh",
"generate-epub": "gitbook epub",
"generate-pdf": "gitbook pdf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MostlyAdequate/mostly-adequate-guide-es.git"
},
"keywords": [
"gitbook",
"javascript",
"guide",
"functional programming"
],
"author": "Mostly Adequate Core Team",
"license": "CC BY-SA",
"bugs": {
"url": "https://github.com/MostlyAdequate/mostly-adequate-guide-es/issues"
},
"homepage": "https://github.com/MostlyAdequate/mostly-adequate-guide-es#readme"
}