forked from alok722/namaste-javascript-notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 1012 Bytes
/
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
{
"name": "namaste-javascript-notes",
"version": "1.0.0",
"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",
"commit": "npm run build && git add . && git-cz"
},
"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-pdf": "^10.0.0",
"markdown-styles": "^3.2.0"
},
"devDependencies": {
"git-cz": "^4.7.6"
}
}