-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "bibleapi-rest",
"author": "Ruslan Kazakov",
"description": "Bible API",
"license": "MIT",
"version": "0.2.0",
"main": "index.js",
"scripts": {
"start": "babel-node index.js",
"dev": "nodemon --exec babel-node index.js",
"test": "NODE_ENV=test mocha --recursive --reporter spec --compilers js:babel-register tests"
},
"repository": {
"type": "git",
"url": "git://github.com/rkazakov/bibleapi-rest.git"
},
"keywords": [
"bible",
"api",
"rest"
],
"bugs": {
"url": "https://github.com/bibleapi/bibleapi-rest/issues"
},
"homepage": "https://github.com/bibleapi/bibleapi-rest#readme",
"dependencies": {
"bible-passage-reference-parser": "^2.0.1",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-winston": "^2.4.0",
"helmet": "^3.8.0",
"lodash": "^4.17.4",
"mongodb": "^2.2.30",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^4.1.1",
"chai-http": "^3.0.0",
"mocha": "^3.5.0",
"nodemon": "^1.11.0"
}
}