-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "koa-blog",
"version": "1.0.0",
"description": "Blog system made with Koa, RethinkDB, AngularJS",
"main": "index.js",
"scripts": {
"start": "node index.js | ./node_modules/koa-bunyan-logger/node_modules/bunyan/bin/bunyan -o short",
"test": "NODE_ENV=test ./node_modules/mocha/bin/mocha",
"coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"engines": {
"node": ">= 4.0.0"
},
"author": "James Cole <[email protected]>",
"license": "GPL-2.0",
"dependencies": {
"babel": "^5.8.29",
"bluebird": "^3.0.2",
"koa": "^1.1.1",
"koa-body": "^1.3.0",
"koa-bunyan-logger": "^1.2.0",
"koa-cors": "0.0.16",
"koa-route": "^2.4.2",
"koa-router": "^5.2.3",
"lodash": "^3.10.1",
"path": "^0.12.7",
"rethinkdb": "^2.1.1",
"thinky": "^2.1.9"
},
"devDependencies": {
"assert": "^1.3.0",
"co-mocha": "^1.1.2",
"co-supertest": "0.0.10",
"coveralls": "^2.11.4",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.0.0",
"supertest": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tortillaj/Koa-Blog.git"
},
"keywords": [
"koajs",
"rethinkdb",
"thinky",
"web",
"sockets"
],
"bugs": {
"url": "https://github.com/tortillaj/Koa-Blog/issues"
},
"homepage": "https://github.com/tortillaj/Koa-Blog#readme"
}