-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.12 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.12 KB
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
49
50
51
{
"name": "jitters",
"version": "1.0.0",
"description": "Coffee database API",
"main": "index.js",
"scripts": {
"heroku-postbuild": "knex migrate:latest",
"knex": "knex",
"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",
"cookie-parser": "1.4.3",
"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",
"dotenv": "4.0.0",
"istanbul": "0.4.5",
"mocha": "3.4.2",
"nodemon": "1.11.0",
"supertest": "3.0.0"
},
"engines": {
"node": "8.1.2"
}
}