-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "gitverdiff",
"version": "1.0.3",
"description": "CLI tool and Node.js library for generating version hashes based on your Git repository's state and file modifications, helps with cache busting and versioning by producing unique identifiers (hashes) that can be embedded in filenames",
"keywords": [
"git",
"versioning",
"hash",
"cli",
"cache-busting",
"build-tool"
],
"repository": {
"type": "git",
"url": "git+https://github.com/IvanKarpan/gitverdiff.git"
},
"license": "Apache-2.0",
"author": "Ivan Karpan <github@ivankarpan.com>",
"contributors": [
"Claude <claude@anthropic.com>",
"GPT <gpt@openai.com>"
],
"main": "src/index.js",
"bin": {
"gitverdiff": "./bin/gitverdiff.js"
},
"scripts": {
"build": "node index.js",
"fix": "pnpm lint --fix",
"lint": "standard",
"release": "run-p fix test && npm publish",
"test": "jest"
},
"dependencies": {
"minimatch": "^10.0.1"
},
"devDependencies": {
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"standard": "^17.1.2"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0",
"pnpm": ">=8.0.0"
}
}