{
  "name": "nodebook",
  "version": "0.8.0",
  "description": "Node.js — Apprendre par l'exemple • Devenez autonome avec JavaScript, l'écosystème npm, le développement frontend, les applications web et en ligne de commande.",
  "bin": "./bin/cli.js",
  "scripts": {
    "build:html": "node bin/build.js index.adoc chapter-*/index.adoc foreword/*.adoc appendix-*/*.adoc",
    "install:all": "./bin/cli.js install all",
    "lint": "eslint '**/*.js'",
    "prestart": "npm run build:html",
    "start": "node server.js",
    "test": "tape 'tests/*.js' | tap-spec",
    "test:docker": "docker run -ti --rm -v $(pwd):/tests -e DOCKER=1 -w /tests node:8-slim npm test",
    "posttest": "npm run lint"
  },
  "engines": {
    "node": "^8.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/oncletom/nodebook.git"
  },
  "keywords": [
    "nodejs",
    "book",
    "french",
    "livre",
    "learn",
    "apprendre"
  ],
  "author": "Thomas Parisot (https://oncletom.io)",
  "license": "CC-BY-NC-SA-4.0",
  "bugs": {
    "url": "https://github.com/oncletom/nodebook/issues"
  },
  "prettier": {
    "arrowParens": "always",
    "bracketSpacing": false,
    "singleQuote": true
  },
  "homepage": "https://oncletom.io/node.js/",
  "dependencies": {
    "finalhandler": "^1.1.1",
    "get-port": "^3.2.0",
    "glob": "^7.1.2",
    "serve-static": "^1.13.2",
    "update-notifier": "^2.4.0",
    "yargs": "^11.1.0"
  },
  "devDependencies": {
    "asciidoctor-extension-interactive-runner": "^1.1.1",
    "asciidoctor.js": "^1.5.6-rc.1",
    "blue-tape": "^1.0.0",
    "chokidar": "^2.0.3",
    "eslint": "^4.19.1",
    "eslint-plugin-react": "^7.7.0",
    "tap-spec": "^4.1.1",
    "tape-spawn": "^1.4.2"
  },
  "eslintConfig": {
    "root": true,
    "parserOptions": {
      "ecmaVersion": 2017,
      "ecmaFeatures": {
        "experimentalObjectRestSpread": true,
        "jsx": true
      }
    },
    "extends": [
      "eslint:recommended"
    ],
    "env": {
      "es6": true,
      "node": true,
      "commonjs": true
    },
    "rules": {
      "callback-return": 2,
      "curly": 2,
      "eqeqeq": 2,
      "global-require": 2,
      "handle-callback-err": 2,
      "no-console": 0,
      "no-path-concat": 1,
      "no-sync": 1,
      "no-undef": 2,
      "no-unused-vars": 1,
      "no-use-before-define": 1,
      "quotes": [
        "error",
        "single"
      ],
      "strict": [
        2,
        "global"
      ]
    }
  }
}
