-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1000 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
40
41
42
{
"name": "geek-quote-api",
"version": "0.1.0",
"description": "An API for retrieving random geeky quotes",
"private": false,
"main": "index.js",
"engines": {
"node": "14.x"
},
"repository": {
"type": "git",
"url": "https://github.com/FotieMConstant"
},
"scripts": {
"serve": "node_modules/.bin/nodemon index.js --exec",
"start": "node index.js",
"test": "mocha"
},
"keywords": [
"geek-quote",
"fotiecodes",
"quotes",
"geeky-quotes",
"geek"
],
"author": "Fotie M. Constant",
"license": "",
"bugs": {
"url": "https://github.com/FotieMConstant"
},
"homepage": "https://github.com/FotieMConstant",
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^8.3.2",
"nodemon": "^2.0.7"
}
}