forked from Jitters-API/jitters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "jitters",
"version": "1.0.0",
"description": "Coffee database API",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "mocha",
"coverage": "istanbul cover _mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jitters-API/jitters.git"
},
"keywords": [
"api",
"coffee"
],
"author": "The Jitters Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jitters-API/jitters/issues"
},
"homepage": "https://github.com/Jitters-API/jitters#readme",
"dependencies": {
"apidoc": "^0.17.6",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"humps": "^2.0.1",
"jsonwebtoken": "^7.4.1",
"knex": "^0.13.0",
"node-fetch": "^1.7.1",
"pg": "^6.4.0"
},
"devDependencies": {
"chai": "^4.0.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"nodemon": "^1.11.0",
"supertest": "^3.0.0"
}
}