-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.39 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@h4ad/tp-cli",
"version": "1.0.1",
"description": "Stupid simple way of generate and share templates with everyone.",
"author": {
"name": "Vinícius Lourenço",
"email": "[email protected]",
"url": "https://github.com/H4ad"
},
"bin": {
"tp": "./bin/run"
},
"homepage": "https://github.com/H4ad/tp-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "https://github.com/H4ad/tp-cli",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.spec.ts\"",
"coverage": "codecov --disable=gcov",
"version": "oclif readme && git add README.md"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "2.3.1",
"@oclif/plugin-autocomplete": "2.1.3",
"@oclif/plugin-help": "5.2.6",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"axios": "1.3.4",
"change-case": "4.1.2",
"js-yaml": "4.1.0",
"lzutf8": "0.6.3",
"open": "8.4.2",
"pluralize": "8.0.0",
"prompts": "2.4.2",
"zod": "3.20.6"
},
"devDependencies": {
"@oclif/test": "2.3.8",
"@types/chai": "4.3.4",
"@types/change-case": "2.3.1",
"@types/js-yaml": "4.0.5",
"@types/mocha": "9.0.0",
"@types/node": "16.18.12",
"@types/open": "6.2.1",
"@types/pluralize": "0.0.29",
"@types/prompts": "2.4.2",
"chai": "4.3.7",
"codecov": "3.8.3",
"eslint": "7.32.0",
"eslint-config-oclif": "4.0.0",
"eslint-config-oclif-typescript": "1.0.3",
"mocha": "9.2.2",
"oclif": "3.7.0",
"shx": "0.3.4",
"ts-node": "10.9.1",
"tslib": "2.5.0",
"typescript": "4.9.5"
},
"oclif": {
"bin": "tp",
"dirname": "tp",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
]
},
"engines": {
"node": ">=16.0.0"
},
"bugs": "https://github.com/H4ad/tp-cli/issues",
"keywords": [
"boilerplate",
"schematic",
"template",
"generate",
"create"
],
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
}
}