-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.33 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
{
"name": "@beuluis/repository-runner",
"version": "1.2.1",
"description": "A task runner for repositories",
"main": "dist/index.js",
"bin": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"templates"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Beuterei/repository-runner.git"
},
"bugs": {
"url": "https://github.com/Beuterei/repository-runner/issues"
},
"homepage": "https://github.com/Beuterei/repository-runner#readme",
"dependencies": {
"execa": "^5.1.1",
"liquidjs": "^9.42.0",
"listr2": "^5.0.5"
},
"devDependencies": {
"@beuluis/eslint-config": "2.0.1",
"@beuluis/hook-cli": "1.1.3",
"@types/node": "18.7.18",
"eslint": "8.23.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "husky install",
"prepack": "npm run build",
"build": "tsc --build"
},
"keywords": [
"automation",
"git",
"repository",
"runner",
"helper"
],
"author": "Luis Beu <[email protected]> (https://luisbeu.de/)",
"license": "MIT",
"lint-staged": {
"*.{js,ts,json,yml,yaml}": [
"eslint"
]
}
}