-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.52 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": "unix-programming-and-regular-expressions-workshop",
"version": "1.0.0",
"description": "A workshop on Unix Programming Principles using tools such as grep, sed, awk, shell programming and regular expressions",
"main": "index.js",
"scripts": {
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'Update docs' && git push [email protected]:jbelmont/unix-programming-and-regular-expressions-workshop.git gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbelmont/unix-programming-and-regular-expressions-workshop.git"
},
"keywords": [],
"author": "Jean-Marcel Belmont <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbelmont/unix-programming-and-regular-expressions-workshop/issues"
},
"homepage": "https://github.com/jbelmont/unix-programming-and-regular-expressions-workshop#readme",
"devDependencies": {
"cheerio": "^1.0.0-rc.2",
"eslint": "^4.14.0",
"faker": "^4.1.0",
"gitbook": "^3.2.3",
"gitbook-cli": "^2.3.2",
"request": "^2.83.0"
},
"dependencies": {
"gitbook-plugin-copy-code-button": "0.0.2",
"gitbook-plugin-highlight": "^2.0.3",
"gitbook-plugin-include-codeblock": "^3.2.1"
}
}