-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
61
62
63
64
65
66
67
68
69
{
"name": "@alanbixby/template-generator",
"version": "0.1.4",
"description": "A personal template generator written in TypeScript",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc-silent -p tsconfig.json --suppress 2307,1378@/src/templates -- && rimraf dist/templates && cp -r src/templates dist",
"start": "ts-node src/cli.ts --name=hello-world",
"start:dev": "nodemon",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --exit .ts,.js --fix",
"format": "prettier --config .prettierrc \"src/**/*.{ts,tsx,js,jsx}\" --write"
},
"bin": {
"templategen": "dist/cli.js",
"template-gen": "dist/cli.js",
"txb": "dist/cli.js",
"txp": "dist/cli.js"
},
"files": [
"dist/"
],
"keywords": [
"template-generator",
"template"
],
"author": "Alan Bixby <[email protected]> (https://alanbix.by)",
"license": "ISC",
"devDependencies": {
"@types/ejs": "^3.0.7",
"@types/node": "^15.12.5",
"@types/shelljs": "^0.8.9",
"@types/validate-npm-package-name": "^3.0.3",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
},
"dependencies": {
"@alanbixby/template-generator": "^0.1.4",
"chalk": "^3.0.0",
"ejs": "^3.1.6",
"enquirer": "^2.3.6",
"ora": "^5.4.1",
"shelljs": "^0.8.4",
"validate-npm-package-name": "^3.0.0",
"yargs": "^17.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanbixby/template-generator.git"
},
"bugs": {
"url": "https://github.com/alanbixby/template-generator/issues"
},
"homepage": "https://github.com/alanbixby/template-generator#readme"
}