-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.25 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "@supercharge/request-ip",
"description": "Retrieve a request’s IP address in Node.js",
"version": "1.2.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/request-ip/issues"
},
"devDependencies": {
"@supercharge/tsconfig": "~2.0.0",
"@types/jest": "~27.4.1",
"@typescript-eslint/eslint-plugin": "~4.29.2",
"eslint": "~7.32.0",
"eslint-config-standard-with-typescript": "~21.0.1",
"eslint-plugin-import": "~2.24.1",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.0",
"jest": "~27.5.1",
"typescript": "~4.4.4"
},
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/request-ip",
"keywords": [
"nodejs",
"request",
"ip",
"request-ip",
"supercharge",
"superchargejs"
],
"license": "MIT",
"main": "dist",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/request-ip.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint --fix --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "jest"
},
"types": "dist"
}