-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.21 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
{
"name": "web-redirects-cli",
"version": "2.0.0",
"description": "Managing HTTP(S) redirects via JSON docs",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint ."
},
"bin": {
"redirects": "./index.js"
},
"type": "module",
"keywords": [
"http",
"https",
"router",
"redirect"
],
"author": "John Wiley & Sons, Inc.",
"contributors": [
{
"name": "Benjamin Young",
"email": "byoung2@wiley.com"
},
{
"name": "Alun Williams",
"email": "aluwilliam@wiley.com"
}
],
"license": "MIT",
"dependencies": {
"axios": "^1.7.9",
"chalk": "^5.3.0",
"dateformat": "^5.0.3",
"deep-object-diff": "^1.1.9",
"dotenv": "^16.4.7",
"inquirer": "^12.2.0",
"js-yaml": "^4.1.0",
"json-diff": "^1.0.6",
"lodash": "^4.17.21",
"open": "^10.1.0",
"parse-domain": "^8.2.2",
"strip-ansi": "^7.1.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-environment-miniflare": "^2.14.4",
"wrangler": "^3.96.0"
}
}