forked from seymen/git-last-commit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 819 Bytes
/
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
{
"name": "git-last-commit",
"version": "1.0.1",
"description": "Read details of the last commit including tags",
"main": "./source/index.js",
"types": "./index.d.ts",
"scripts": {
"test": "node_modules/.bin/mocha",
"lint": "node_modules/.bin/eslint source/**",
"coverage": "node_modules/.bin/nyc npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/seymen/git-last-commit"
},
"keywords": [
"git",
"commit",
"history",
"log"
],
"author": "Ozan Seymen",
"license": "MIT",
"bugs": {
"url": "https://github.com/seymen/git-last-commit/issues"
},
"homepage": "https://github.com/seymen/git-last-commit",
"devDependencies": {
"chai": "^4",
"mocha": "^6",
"eslint": "^6",
"nyc": "^14.1.1",
"sinon": "^7"
}
}