-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.03 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
{
"name": "scalability-workshop",
"version": "1.0.0",
"description": "Scaling Database Queries, with Nodejs and MongoDB as the tech",
"main": "example1/atomic.js",
"scripts": {
"test": "node scripts/test.js",
"start": "node example1/atomic.js",
"show": "node scripts/show.js",
"build": "npm install && node scripts/populate.js",
"reset": "node scripts/drop.js && node scripts/populate.js",
"1": "node example1/atomic.js",
"2": "node example2/sort.js",
"3": "node example3/pagination.js",
"4": "node example4/aggregate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/branch-bunch/Scalability-Workshop.git"
},
"keywords": [
"scale",
"nodejs",
"mongodb",
"mongoose",
"cuhacking"
],
"author": "Kirin Rastogi",
"license": "MIT",
"bugs": {
"url": "https://github.com/branch-bunch/Scalability-Workshop/issues"
},
"homepage": "https://github.com/branch-bunch/Scalability-Workshop#readme",
"dependencies": {
"mongoose": "^4.8.5"
}
}