-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"name": "request-header-parser",
"version": "0.1.0",
"description": "Request header parser microservice for freeCodeCamp",
"main": "server.js",
"private": true,
"directories": {
"test": "tests"
},
"dependencies": {
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"pug": "^2.0.3"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"jest": "^23.5.0",
"nodemon": "^1.18.3",
"supertest": "^3.1.0"
},
"engines": {
"node": "8.10.0"
},
"scripts": {
"dev": "nodemon -r dotenv/config server.js",
"start": "node -r dotenv/config server.js",
"test": "jest"
},
"keywords": [
"fcc",
"freecodecamp",
"api",
"microservice",
"request header"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zsoltime/fcc-api-request-header.git"
},
"author": "Zsolt Meszaros",
"license": "MIT",
"bugs": {
"url": "https://github.com/zsoltime/fcc-api-request-header/issues"
},
"homepage": "https://github.com/zsoltime/fcc-api-request-header#readme"
}