-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 899 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
38
39
40
41
42
43
44
45
46
{
"name": "friendlog",
"version": "0.6.0",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint index.js",
"lint-fix": "eslint index.js --fix"
},
"author": "Kunal Marwaha, Pandu Rendradjaja",
"license": "ISC",
"dependencies": {
"columnify": "^1.5.4",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"moment": "^2.21.0",
"readline": "^1.3.0"
},
"files": [
"index.js",
"completion.sh"
],
"description": "",
"repository": "github:marwahaha/friendlog",
"keywords": [
"friend",
"log",
"hangout",
"cli"
],
"bin": {
"friendlog": "./index.js",
"fl": "./index.js",
"fl-completion-setup": "./completion.sh"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"devDependencies": {
"eslint": "^4.19.1",
"husky": "^1.0.0-rc.1"
}
}