forked from alok722/namaste-javascript-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 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": "namaste-javascript-notes",
"version": "2.0.1",
"description": "> This repo maintains my version of javascript notes which I learned from the famous [Namaste Javascript Youtube Series](https://www.youtube.com/watch?v=pN6jk0uUrD8&list=PLlasXeu85E9cQ32gLCvAvr9vNaUccPVNP&index=1&ab_channel=AkshaySaini) by Akshay Saini.",
"main": "index.js",
"scripts": {
"build": "node generatePdf && generate-md --layout markedapp-byword --input ./notes/lectures.md --output ./dist",
"stage": "git add ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/alok722/namaste-javascript-notes.git"
},
"author": "Alok Raj",
"license": "MIT",
"bugs": {
"url": "https://github.com/alok722/namaste-javascript-notes/issues"
},
"homepage": "https://github.com/alok722/namaste-javascript-notes#readme",
"dependencies": {
"markdown-styles": "^3.2.0",
"pretty-markdown-pdf": "^1.5.1"
},
"devDependencies": {
"git-cz": "^4.9.0",
"pre-commit": "^1.2.2"
},
"pre-commit": [
"build",
"stage"
]
}