-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "git-hash-miner",
"version": "2.1.0",
"description": "Mine your commit hashes!",
"main": "dist/index.js",
"files": [
"dist/*",
"!dist/*.map"
],
"bin": {
"githashminer": "dist/index.js"
},
"scripts": {
"build": "npm run lint && tsc && sed -i '1s|#!/usr/bin/env ts-node|#!/usr/bin/env node|' dist/index.js",
"prepack": "npm run build",
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
"release": "git push && git push --tags && npm ci && npm publish",
"release-major": "npm version major && npm run release",
"release-minor": "npm version minor && npm run release",
"release-patch": "npm version patch && npm run release"
},
"repository": {
"type": "git",
"url": "https://github.com/Zwyx/git-hash-miner"
},
"keywords": [
"git",
"vanity",
"commit",
"hash"
],
"author": "Zwyx",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}