-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 901 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 901 Bytes
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
{
"name": "get-git-version",
"version": "0.5.5",
"author": "Polys Georgiou",
"license": "MIT",
"homepage": "https://github.com/polys/git-version",
"repository": {
"type": "git",
"url": "https://github.com/polys/git-version.git"
},
"bin": {
"get-git-version": "./version.js"
},
"main": "version.js",
"scripts": {
"start": "node version.js",
"debug": "nodemon version.js",
"eslint": "eslint version.js"
},
"engines": {
"node": ">= 8.3.0"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"nodemon": "^2.0.20"
},
"dependencies": {
"commander": "^6.2.0"
},
"description": "Gets Git version and commit information for one or more repositories.",
"keywords": [
"version",
"git",
"repository",
"branch",
"commit",
"sha"
]
}