-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 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
61
62
63
{
"name": "generator-vercel-shortener",
"version": "0.0.0-semantically-released",
"description": "Generator to create your own personal url shortener to deploy to Vercel.",
"homepage": "https://github.com/codfish/generator-vercel-shortener",
"author": {
"name": "Chris O'Donnell",
"email": "[email protected]",
"url": "https://codfish.io"
},
"files": [
"generators"
],
"main": "dist/index.js",
"keywords": [
"yeoman-generator",
"vercel",
"vercel redirects",
"zeit now",
"url shortener",
"short urls"
],
"license": "MIT",
"devDependencies": {
"cod-scripts": "^4.0.3",
"yeoman-test": "^2.4.1"
},
"engines": {
"node": ">=10",
"npm": ">=6",
"yarn": ">=1"
},
"repository": {
"type": "git",
"url": "https://github.com/codfish/generator-vercel-shortener.git"
},
"scripts": {
"format": "cod-scripts format",
"lint": "cod-scripts lint",
"lint:commit": "cod-scripts commitlint",
"test": "cod-scripts test"
},
"eslintConfig": {
"extends": [
"./node_modules/cod-scripts/eslint.js"
],
"rules": {
"no-underscore-dangle": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "cod-scripts pre-commit",
"commit-msg": "cod-scripts commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"chalk": "^4.0.0",
"lodash": "^4.17.15",
"yeoman-generator": "^4.9.0"
}
}