-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.1 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.1 KB
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
{
"name": "generaptr-cli",
"version": "0.2.1",
"description": "Generaptr is a node cli package that helps when starting up a project by generating boilerplate code.",
"license": "MIT",
"scripts": {
"lint": "eslint -c .eslintrc.js lib",
"commit": "git-cz"
},
"keywords": [
"nodejs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/generaptr/generaptr-cli.git"
},
"author": "Darius Cupsa <cupsadarius@gmail.com>",
"homepage": "https://generaptr.github.io",
"bin": {
"generaptr": "./bin/generaptr"
},
"bugs": {
"url": "https://github.com/generaptr/generaptr-cli/issues"
},
"engines": {
"node": ">= 7.5.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
},
"dependencies": {
"chalk": "^5.3.0",
"clear": "^0.1.0",
"figlet": "^1.2.4",
"inquirer": "^9.2.20",
"generaptr": "^1.2.0"
}
}