forked from SVasilev/http-headers-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 815 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 815 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
{
"name": "http-headers-validation",
"version": "0.0.1",
"description": "Utility for validating HTTP header names and values",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"mocha": "2.4.5",
"eslint": "2.9.0",
"should": "8.3.1"
},
"scripts": {
"lint": "./node_modules/.bin/eslint index.js",
"test": "./node_modules/.bin/mocha test.js --check-leaks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SVasilev/http-headers-validation.git"
},
"keywords": [
"http",
"headers",
"header",
"validation"
],
"author": "Stefan Vasilev",
"license": "MIT",
"bugs": {
"url": "https://github.com/SVasilev/http-headers-validation/issues"
},
"homepage": "https://github.com/SVasilev/http-headers-validation#readme"
}