-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "nodejs-template",
"version": "1.0.0",
"description": "A simple node.js template for future projects.",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node node_modules/istanbul/lib/cli.js cover _mocha 'test/**/*.js'",
"start": "node server.js",
"update": "node lib/updater/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maximumstock/nodejs-template.git"
},
"author": "Maximilian Stock",
"license": "MIT",
"bugs": {
"url": "https://github.com/maximumstock/nodejs-template/issues"
},
"homepage": "https://github.com/maximumstock/nodejs-template#readme",
"devDependencies": {
"chai": "^3.4.1",
"co-mocha": "^1.1.2",
"co-supertest": "0.0.10",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"require-new": "^1.1.0",
"supertest": "^1.1.0"
},
"dependencies": {
"bunyan": "^1.8.1",
"co": "^4.6.0",
"kcors": "^1.1.0",
"knex": "^0.11.9",
"koa": "^1.1.2",
"koa-body": "^1.4.0",
"koa-compress": "^1.0.8",
"koa-logger": "^1.3.0",
"koa-redis-cache": "^1.0.0",
"koa-router": "^5.3.0",
"lodash": "^4.11.1",
"moment": "^2.11.2",
"pg": "^4.4.4",
"request": "^2.69.0",
"underscore": "^1.8.3"
}
}