-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 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
{
"name": "create-hexapinod",
"version": "v1.0.1",
"description": "Easily generate a new Hexapinod projet with the selected features.",
"main": "main.cjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cecric/create-hexapinod.git"
},
"keywords": [
"node",
"javascript"
],
"contributors": [
{
"name": "Cédric LESEC",
"email": "cedric.lesec@gmail.com"
}
],
"private": false,
"license": "MIT license",
"bugs": {
"url": "https://github.com/cecric/create-hexapinod/issues",
"email": "cedric.lesec@gmail.com"
},
"homepage": "https://github.com/cecric/create-hexapinod#readme",
"bin": {
"create-hexapinod": "main.cjs",
"ch": "main.cjs"
},
"funding": {
"type": "individual",
"url": "https://www.buymeacoffee.com/cecric"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"commander": "^9.1.0",
"prompts": "^2.4.2"
}
}