-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "vercel-redirects",
"version": "0.0.0-semantically-released",
"description": "Command-line utility to manage your Vercel project redirects. Doubles as a url shortener.",
"homepage": "https://github.com/codfish/vercel-redirects",
"author": {
"name": "Chris O'Donnell",
"email": "[email protected]",
"url": "https://codfish.io"
},
"files": [
"src"
],
"bin": {
"vercel-redirects": "src/cli.js"
},
"type": "module",
"exports": "./src/index.js",
"keywords": [],
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.9.2",
"chalk": "^5.0.1",
"commander": "^9.4.0",
"find-up": "^6.3.0",
"load-json-file": "^7.0.1",
"normalizr": "^3.6.0",
"vercel": "^27.4.0",
"write-json-file": "^5.0.0"
},
"devDependencies": {
"cod-scripts": "^11.0.0",
"husky": "^8.0.0"
},
"engines": {
"node": ">=14.16",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/codfish/vercel-redirects.git"
},
"scripts": {
"format": "cod-scripts format",
"lint": "cod-scripts lint",
"lint:commit": "cod-scripts commitlint",
"test": "NODE_OPTIONS=--experimental-vm-modules cod-scripts test",
"shorten": "node src/cli.js",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"./node_modules/cod-scripts/eslint.js"
],
"rules": {
"no-console": "off",
"import/extensions": "off"
}
}
}