-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "@boot-start/cli",
"version": "1.2.0",
"description": "A CLI to bootstrap different new projects by just single line commands.",
"main": "lib/index.js",
"bin": {
"@bs-cli/bootstart": "bin/bootstart",
"bootstart": "bin/bootstart",
"bs": "bin/bootstart"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"No test specified\"",
"minify": "jsmin -o lib/cli.js src/cli.js && jsmin -o lib/index.js src/index.js && jsmin -o lib/main.js src/main.js",
"build": "npx tsc && npm run minify"
},
"files": [
"/bin",
"/lib",
"/templates"
],
"keywords": [
"cli",
"bootstart",
"bs",
"@bs-cli",
"bs-cli"
],
"author": "Joy Singh",
"license": "ISC",
"dependencies": {
"arg": "^5.0.1",
"chalk": "^4.1.2",
"esm": "^3.2.25",
"execa": "^5.1.1",
"figlet": "^1.5.2",
"inquirer": "^8.2.0",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0"
},
"devDependencies": {
"jsmin": "^1.0.1",
"typescript": "^4.4.4"
},
"types": "lib/index.d.ts"
}