-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 856 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
36
37
{
"name": "file-checksum",
"version": "1.0.4",
"description": "A CLI tool to display MD5 or SHA1 checksum of a file's contents.",
"main": "index.js",
"bin": "index.js",
"scripts": {
"test": "mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thatisuday/file-checksum.git"
},
"keywords": [
"checksum",
"cli",
"md5",
"sha1"
],
"author": "Uday Hiwarale <thatisuday@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thatisuday/file-checksum/issues"
},
"homepage": "https://github.com/thatisuday/file-checksum#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.0",
"fs-extra": "^8.1.0",
"lodash": "^4.17.15",
"md5": "^2.2.1",
"node-sha1": "^1.0.1"
},
"devDependencies": {
"mocha": "^6.2.0"
}
}