-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 923 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 923 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
27
28
29
30
31
32
33
34
35
36
{
"name": "ntuosc-geocaching-core-node",
"version": "0.0.1",
"description": "A RESTful back-end server used in geocaching game written in Node.js",
"main": "lib/app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/NTUOSC/ntuosc-geocaching-core-node.git"
},
"keywords": [
"geocaching",
"ntu"
],
"scripts": {
"build": "node lib/build.js",
"start": "npm run build & node lib/app.js"
},
"author": "m80126colin",
"license": "MIT",
"bugs": {
"url": "https://github.com/NTUOSC/ntuosc-geocaching-core-node/issues"
},
"homepage": "https://github.com/NTUOSC/ntuosc-geocaching-core-node#readme",
"dependencies": {
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"deep-assign": "^2.0.0",
"express": "^4.14.0",
"jwt-simple": "^0.5.0",
"lokijs": "^1.4.1",
"morgan": "^1.7.0"
},
"devDependencies": {
"request": "^2.74.0"
}
}