-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.1 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
50
51
52
53
54
55
56
57
{
"name": "fetch-metadata",
"description": "Node.js middleware for enforcing Fetch metadata request header checking",
"version": "1.0.0",
"author": "JP Erasmus",
"license": "MIT",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/fetch-metadata.esm.js",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git@github.com:jperasmus/fetch-metadata.git"
},
"bugs": {
"url": "https://github.com/jperasmus/fetch-metadata/issues"
},
"keywords": [
"node.js",
"middleware",
"express",
"connect",
"fetch",
"metadata",
"request",
"security",
"headers"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"peerDependencies": {},
"dependencies": {
"url-pattern": "^1.0.3"
},
"devDependencies": {
"husky": "4.2.5",
"tsdx": "0.13.2",
"tslib": "2.0.1",
"typescript": "3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
}
}