-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 715 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 715 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
{
"name": "javascript-design-patterns",
"version": "1.0.0",
"description": "A collection of examples of various design patterns written in Javascript",
"main": "index.js",
"scripts": {
"start": "node ./$PATTERN/index.js",
"start-dev": "nodemon ./$PATTERN/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/babzcraig/javascript-design-patterns.git"
},
"keywords": [
"Javascript"
],
"author": "Babs Craig",
"license": "MIT",
"bugs": {
"url": "https://github.com/babzcraig/javascript-design-patterns/issues"
},
"homepage": "https://github.com/babzcraig/javascript-design-patterns#readme",
"dependencies": {
"nodemon": "^1.18.4"
}
}