-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 950 Bytes
/
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
{
"name": "project-generator-cli",
"version": "1.0.0",
"description": "cli tool to create a new project based in a template",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colomfernando/project-generator.git"
},
"keywords": [
"cli",
"generator",
"templates"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/colomfernando/project-generator-cli/issues"
},
"homepage": "https://github.com/colomfernando/project-generator-cli#readme",
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@types/node-emoji": "^1.8.1",
"chalk": "^4.1.2",
"node-emoji": "^1.11.0",
"prompts": "^2.4.2"
}
}