-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 944 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 944 Bytes
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
{
"name": "request-header-parser",
"version": "1.0.0",
"description": "A project for freecodecamp",
"main": "server.js",
"scripts": {
"test": "test",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/somanath08/Request-header-parser.git"
},
"keywords": [
"Request",
"header",
"parser",
"freecodecamp"
],
"author": "Sai Somanath Komanduri",
"license": "MIT",
"bugs": {
"url": "https://github.com/somanath08/Request-header-parser/issues"
},
"homepage": "https://github.com/somanath08/Request-header-parser#readme",
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2"
},
"dependencies": {
"express": "^4.16.3",
"express-useragent": "^1.0.12"
}
}