-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 918 Bytes
/
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
{
"name": "tweetstimeline",
"engines": {
"node": "7.2.0"
},
"version": "1.0.0",
"description": "App that displays Embedded Twitter Timeline for given user.",
"main": "index.js",
"scripts": {
"test": "NODE_ENV='test' NODE_PATH='.;libs/.' mocha --harmony -u bdd -R spec -t 500 --recursive --watch",
"start": "NODE_ENV='production' NODE_PATH='.:libs/.' node --harmony index.js"
},
"keywords": [
"twitter"
],
"author": "Sergej <sergej.tertychnij@gmail.com>",
"license": "ISC",
"dependencies": {
"bower": "^1.8.0",
"config": "^1.25.1",
"koa": "^2.1.0",
"koa-bodyparser": "^4.1.0",
"koa-favicon": "^2.0.0",
"koa-logger": "^2.0.1",
"koa-router": "^7.0.1",
"koa-static": "^3.0.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"cross-env": "^5.0.1",
"mocha": "^3.4.2",
"supertest": "^3.0.0",
"supertest-koa-agent": "^0.3.0"
}
}