-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
32 lines (32 loc) · 1.19 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
{
"name": "fundamentos-de-javascript",
"version": "0.1.0",
"description": "Libro sobre Fundamendamentos de JavaScript mantenido por la comunidad",
"license": "CC-BY-NC-4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/CostaRicaJS/Fundamentos-de-JavaScript.git"
},
"keywords": [
"javascript"
],
"bugs": {
"url": "https://github.com/CostaRicaJS/Fundamentos-de-JavaScript/issues"
},
"homepage": "https://github.com/CostaRicaJS/Fundamentos-de-JavaScript#readme",
"scripts": {
"test": "npm run lint && npm run spelltest",
"lint": "./node_modules/.bin/eslint --ext .md .",
"start": "./node_modules/.bin/gitbook install && ./node_modules/.bin/gitbook serve ./",
"spellcheck": "./node_modules/.bin/mdspell --es-es ./book/**/**.md",
"spelltest": "./node_modules/.bin/mdspell --es-es -r ./book/**/**.md"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"eslint": "^1.7.3",
"eslint-config-airbnb": "^3.1.0",
"eslint-plugin-markdown": "git+https://github.com/eslint/eslint-plugin-markdown.git",
"gitbook-cli": "^1.0.0",
"markdown-spellcheck": "git+https://github.com/gaboesquivel/node-markdown-spellcheck.git#spanish"
}
}