-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.98 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
{
"name": "git-pull-run",
"version": "1.4.0",
"description": "Run commands and scripts after git pull",
"bin": "./dist/cli.js",
"exports": "./dist/index.js",
"type": "module",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.build.json",
"build:watch": "tsc --watch",
"release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest",
"release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest",
"release:next": "npm version $(semver $npm_package_version -i prerelease --preid next ) && npm publish --tag next",
"start": "ts-node ./src/cli",
"test": "jest",
"dummy": "echo \"dummy\"",
"post-merge": "echo \"dummy\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zirkelc/git-pull-run.git"
},
"keywords": [
"git",
"pull",
"run",
"npm",
"install",
"hooks",
"post-merge"
],
"author": "Christian Zirkel",
"license": "MIT",
"bugs": {
"url": "https://github.com/zirkelc/git-pull-run/issues"
},
"homepage": "https://github.com/zirkelc/git-pull-run#readme",
"devDependencies": {
"@gmrchk/cli-testing-library": "^0.1.2",
"@tsconfig/node16": "^1.0.2",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/debug": "^4.1.7",
"@types/jest": "^29.2.0",
"@types/micromatch": "^4.0.2",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-pull-run": "^1.4.0",
"jest": "^29.2.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.5.3"
},
"dependencies": {
"colorette": "^2.0.19",
"commander": "^8.3.0",
"debug": "^4.3.3",
"execa": "^6.1.0",
"listr2": "^5.0.5",
"micromatch": "^4.0.4"
}
}