-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "http-proxy-middleware-secure-cookies",
"version": "0.1.8",
"description": "Securely add cookies to your http-proxy requests",
"main": "dist/lib/secureCookieProxy.js",
"esm": "dist/esm/secureCookieProxy.js",
"scripts": {
"build": "tsc && tsc --project tsconfig.esm.json",
"start": "yarn build && yarn example",
"test": "jest",
"format": "prettier --write src/*",
"lint": "eslint --ext ts src/*",
"prepublishOnly": "yarn build",
"example": "webpack-dev-server --config example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ktmud/http-proxy-middleware-secure-cookies.git"
},
"keywords": [
"http",
"proxy",
"cookies",
"dev",
"server",
"webpack",
"security"
],
"author": "Jesse Yang <hello@yjc.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ktmud/http-proxy-middleware-secure-cookies/issues"
},
"homepage": "https://github.com/ktmud/http-proxy-middleware-secure-cookies#readme",
"dependencies": {
"@types/cookie": "^0.4.0",
"@types/http-proxy-middleware": "^0.19.3",
"@types/inquirer": "^7.3.1",
"cookie": "^0.4.1",
"inquirer": "^7.3.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"prettier": "^2.1.0",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"peerDependencies": {
"http-proxy-middleware": ">=0.19 <2"
},
"optionalDependencies": {
"keytar": "^6.0.1"
},
"prettier": {
"singleQuote": true,
"arrowParens": "always",
"trailingComma": "all"
}
}