-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "algorithm-cracker",
"version": "1.0.0",
"description": "Comprehensive algorithms solution to help engineers prepare their interviews and future study",
"main": "index.js",
"scripts": {
"serve": "rm -rf ./docs/_book/ && gitbook serve ./docs",
"build": "rm -rf build/ && gitbook build docs/ build/",
"lint": "jsonlint book.json && find ./docs -name \\*.md -exec markdown-link-check {} \\;",
"clean": "rm -rf ./docs/_book/",
"test": "npm test"
},
"pre-commit": [
"lint",
"clean",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aaronoah/algorithm-cracker.git"
},
"keywords": [
"algorithms"
],
"author": "aaronoah <[email protected]> (http://hqstudio.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaronoah/algorithm-cracker/issues"
},
"homepage": "https://github.com/aaronoah/algorithm-cracker#readme",
"devDependencies": {
"gitbook-cli": "^2.3.2",
"jsonlint": "^1.6.3",
"markdown-link-check": "^3.7.2"
},
"engines": {
"node": "10.13.0"
}
}