-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 874 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
{
"name": "bible-api",
"version": "1.0.0",
"description": "Bible REST API for Japanese colloquial translation",
"scripts": {
"start": "node app/app.js",
"pm2": "pm2 start app/app.js --name bible-api",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fujiharuka/bible-api.git"
},
"keywords": [
"Bible"
],
"author": "Fuji Haruka",
"license": "MIT",
"bugs": {
"url": "https://github.com/fujiharuka/bible-api/issues"
},
"homepage": "https://github.com/fujiharuka/bible-api#readme",
"dependencies": {
"koa": "^1.2.1",
"koa-body": "^1.5.0",
"koa-cors": "0.0.16",
"koa-logger": "^1.3.0",
"koa-router": "^5.4.0",
"mysql": "^2.11.1",
"sequelize": "^3.24.1"
},
"devDependencies": {
"mocha": "^3.0.2",
"should": "^11.1.0",
"supertest": "^2.0.0"
}
}