-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.01 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.01 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
{
"name": "@danhu90/work-template-cli",
"version": "1.0.3",
"description": "A CLI to bootstrap my projects",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danhu90/work-template-cli.git"
},
"bugs": {
"url": "https://github.com/danhu90/work-template-cli/issues"
},
"homepage": "https://github.com/danhu90/work-template-cli#readme",
"keywords": [
"Cli",
"GraphQL",
"TypeScript",
"Prisma",
"Codegen",
"Node"
],
"bin": {
"@danhu90/template-cli": "./index.js",
"template-cli": "./index.js"
},
"publishConfig": {
"access": "public"
},
"author": "Daniel Huertas Ariza",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.5",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1"
},
"dependencies": {
"inquirer": "^8.2.0"
}
}