-
Notifications
You must be signed in to change notification settings - Fork 126
/
package.json
42 lines (42 loc) · 1.05 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
40
41
42
{
"name": "mega-interview-guide",
"version": "1.0.0",
"description": "The mega frontend interview guide",
"main": "index.js",
"scripts": {
"dev": "npm run update:toc && node index.js && npx http-server -p 8080 ./build",
"build": "node index.js",
"update:toc": "markdown-toc -i ./README.md --maxdepth 2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danieldelcore/mega-interview-guide.git"
},
"keywords": [
"notes",
"interview",
"guide",
"frontend",
"cheatsheet",
"study"
],
"author": "Daniel Del Core",
"license": "MIT",
"bugs": {
"url": "https://github.com/danieldelcore/mega-interview-guide/issues"
},
"homepage": "https://github.com/danieldelcore/mega-interview-guide#readme",
"devDependencies": {
"fs-extra": "^9.1.0",
"highlight.js": "^10.7.2",
"husky": "^4.2.5",
"markdown-toc": "^1.2.0",
"marked": "^2.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run update:toc"
}
}
}