-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 656 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 656 Bytes
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
{
"private": true,
"name": "patterns-guide",
"description": "📘 Guide through Design Patterns (in JavaScript)",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Piotr Kowalski",
"email": "piecioshka@gmail.com",
"url": "https://piecioshka.pl/"
},
"scripts": {
"start": "docsify serve .",
"build:pdf": "docsify-pdf-converter",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"docsify-pdf-converter": "^2.0.7",
"prettier": "^3.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/piecioshka/patterns-guide.git"
}
}