-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
39 lines (39 loc) · 952 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
36
37
38
39
{
"name": "myKoajsRestApp",
"version": "3.6.0",
"description": "A simple Koajs 2 REST Application Skeleton in ES6 style",
"author": {
"name": "Oleg Cherniy",
"email": "oleg.cherniy@gmail.com"
},
"directories": {
"lib": "./app/controllers",
"test": "./test"
},
"dependencies": {
"amqplib": ">=0.5.3",
"config": ">=3.1.0",
"debug": ">=4.1.1",
"joi": "14.3.1",
"koa": ">=2.15.2",
"koa-body": "6.*",
"koa-router": "7.4.*",
"optimist": ">=0.6.1",
"prom-client": ">=11.3.0",
"prometheus-gc-stats": ">=0.6.1",
"socket.io": "^3.1.*",
"to-time": "git://github.com/ApelSYN/to-time.git"
},
"devDependencies": {
"frisby": "^0.8.5",
"get-port": "^3.0.0",
"jasmine-node": "*"
},
"scripts": {
"start": "node --harmony index.js",
"test": "node --harmony ./node_modules/jasmine-node/lib/jasmine-node/cli.js spec"
},
"engines": {
"node": ">=7.6.x"
}
}