-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "init-cli",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && shx rm -rf dist/templates && shx cp -r src/templates dist"
},
"bin": {
"init-cli": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaayperez/init-cli.git"
},
"keywords": [],
"author": "Justin Perez",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaayperez/init-cli/issues"
},
"homepage": "https://github.com/jaayperez/init-cli#readme",
"devDependencies": {
"@types/ejs": "^3.0.5",
"@types/inquirer": "^7.3.1",
"@types/node": "^14.11.10",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^15.0.10",
"nodemon": "^2.0.5",
"shx": "^0.3.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"ejs": "^3.1.5",
"inquirer": "^7.3.3",
"shelljs": "^0.8.4",
"yargs": "^16.1.1"
}
}