-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "@beuluis/create-something",
"version": "2.0.2",
"description": "Initializer for other initializers",
"main": "dist/cli.js",
"bin": "dist/cli.js",
"types": "dist/cli.d.ts",
"files": [
"dist",
"templates"
],
"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-out && ts-node src/cli.ts test-out",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beuterei/create-something.git"
},
"author": "Luis Beu <me@luisbeu.de> (https://luisbeu.de/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Beuterei/create-something/issues"
},
"homepage": "https://github.com/Beuterei/create-something#readme",
"dependencies": {
"@beuluis/create-helper": "^1.1.1",
"package-name-regex": "^2.0.6"
},
"devDependencies": {
"@beuluis/eslint-config": "2.0.1",
"@beuluis/hook-cli": "1.1.4",
"@types/node": "18.7.18",
"@types/package-name-regex": "2.0.0",
"eslint": "8.48.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.3"
},
"keywords": [
"create",
"create-something",
"create-initializer",
"initializer",
"helper"
],
"lint-staged": {
"*.{js,ts,json,yml,yaml}": [
"eslint"
]
}
}