-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 KB
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": "rug-hooks",
"version": "0.5.0",
"description": "CLI utility to bundle up and run some ReallyUsefulGit-Hooks",
"main": "./lib/cli.js",
"types": "./lib/cli.d.ts",
"bin": "./bin/rug-hooks",
"scripts": {
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watch",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**",
"serve": "npm run build && node ./bin/rug-hooks",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"version": "npm run format && git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Apteco/rug-hooks.git"
},
"keywords": [
"git",
"hooks",
"git-hooks",
"husky"
],
"author": "Apteco",
"license": "ISC",
"bugs": {
"url": "https://github.com/Apteco/rug-hooks/issues"
},
"homepage": "https://github.com/Apteco/rug-hooks#readme",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.0.0",
"lodash": "^4.17.21",
"reflect-metadata": "^0.1.13",
"simple-git": "^3.2.4",
"tsyringe": "^4.6.0",
"winston": "^3.6.0"
}
}