-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
{
"name": "@beuluis/create-helper",
"version": "1.4.1",
"description": "A helper to create a create-something app",
"main": "dist/index.js",
"bin": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "npm run test-cli -- --name create-test --description test --license MIT",
"lint": "eslint .",
"prepack": "npm run build",
"build": "tsc --build",
"test-cli": "rm -Rf test/test-out && ts-node test/test-cli.ts test/test-out",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beuterei/create-helper.git"
},
"bugs": {
"url": "https://github.com/Beuterei/create-helper/issues"
},
"homepage": "https://github.com/Beuterei/create-helper#readme",
"author": "Luis Beu <[email protected]> (https://luisbeu.de/)",
"license": "MIT",
"dependencies": {
"@ovyerus/licenses": "^6.4.4",
"colorette": "^2.0.19",
"execa": "^6.1.0",
"inquirer": "^8.2.4",
"inquirer-search-list": "^1.2.6",
"liquidjs": "^9.42.0",
"minimist": "^1.2.6"
},
"devDependencies": {
"@beuluis/eslint-config": "2.0.1",
"@beuluis/hook-cli": "1.2.1",
"@types/inquirer": "9.0.1",
"@types/minimist": "1.2.2",
"@types/node": "18.7.18",
"eslint": "8.25.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"keywords": [
"create",
"create-something",
"create-initializer",
"initializer",
"helper"
],
"lint-staged": {
"*.{js,ts,json,yml,yaml}": [
"eslint"
]
}
}