-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 KB
/
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
{
"name": "http-headers-validation",
"version": "0.0.2",
"description": "Utility for validating HTTP header names and values",
"main": "index.js",
"dependencies": {
"typescript": "^5.6.2"
},
"devDependencies": {
"eslint": "9.11.0",
"globals": "^15.9.0",
"mocha": "10.7.3",
"should": "13.2.3"
},
"scripts": {
"clean:types": "rm -rf ./*.d.ts && rm -rf ./*.d.ts.map && rm -rf ./*.d.mts && rm -rf ./*.d.mts.map",
"build:types": "npx tsc -d --declarationDir ./ --declarationMap --emitDeclarationOnly",
"lint": "node ./node_modules/eslint/bin/eslint.js index.js",
"test": "node ./node_modules/mocha/bin/mocha.js 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"
}