-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.61 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "xgn",
"version": "1.0.0",
"description": "`xgn` is a CLI, project generator",
"keywords": [
"cli",
"xgn",
"project",
"generator"
],
"author": {
"name": "Santiago Arias",
"email": "sanx349@gmail.com",
"url": "https://github.com/soy4rias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SOY4RIAS/xgn.git"
},
"homepage": "https://github.com/SOY4RIAS/xgn#readme",
"bugs": {
"email": "me@santiagoarias.tech",
"url": "https://github.com/SOY4RIAS/xgn/issues"
},
"license": "MIT",
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"clean": "rimraf lib",
"create": "npm run build && npm run test",
"prebuild": "npm run clean",
"build": "tsc -p .",
"test:manual": "npm i -g && xgn",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"main": "./lib/index.js",
"bin": {
"xgn": "./lib/index.js"
},
"devDependencies": {
"@types/ejs": "^3.0.5",
"@types/figlet": "^1.2.1",
"@types/inquirer": "^7.3.1",
"@types/listr": "^0.14.2",
"@types/ncp": "^2.0.4",
"@types/node": "^14.14.20",
"eslint": "^7.17.0",
"eslint-config-domix": "^0.1.1",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"arg": "^5.0.0",
"chalk": "^4.1.0",
"ejs": "^3.1.5",
"execa": "^5.0.0",
"figlet": "^1.5.0",
"gitignore": "^0.6.0",
"inquirer": "^7.3.3",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0",
"rimraf": "^3.0.2",
"yargs": "^16.2.0"
}
}