-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.17 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
{
"name": "scaffold-master",
"version": "1.0.1",
"description": "A lightweight scaffolding package for creating, generating and managing boilerplates",
"preferGlobal": true,
"author": [
{
"name": "Abijith Vasanthakumar",
"email": "[email protected]"
},
{
"name": "Abel Simon Zachariah",
"email": "[email protected]"
}
],
"main": "./lib/generator.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Abjcodes/scaffold-master"
},
"keywords": [
"boilerplate",
"generator",
"scaffolder",
"template",
"starter",
"skeleton",
"base",
"framework",
"library",
"tool",
"react",
"webpack",
"typescript",
"angular",
"npm",
"ionic",
"ember",
"handlebars",
"vue",
"webpack",
"laravel",
"php",
"symfony"
],
"license": "MIT",
"bin": {
"sm-generate": "./bin/generatorCli.js",
"sm-save": "./bin/saveCli.js",
"sm-delete": "./bin/deleteCli.js"
},
"dependencies": {
"fs-extra": "^11.1.1",
"inquirer": "^9.2.8"
}
}