-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.09 KB
/
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
47
48
49
50
51
52
53
54
55
{
"name": "filediffer-cli",
"version": "0.1.0",
"main": "index.js",
"bin": {
"filediffer": "./index.js"
},
"description": "CLI for file diffing",
"repository": "Biboswan/filediffer-cli",
"homepage": "https://github.com/Biboswan/filediffer-cli",
"bugs": "https://github.com/Biboswan/filediffer-cli/issues",
"license": "MIT",
"keywords": [
"cli",
"file",
"difference",
"byline"
],
"files": [
"index.js"
],
"scripts": {
"test": "mocha test/test.js"
},
"author": {
"name": "Biboswan Roy",
"email": "[email protected]"
},
"dependencies": {
"minimist": "^1.2.5",
"n-readlines": "^1.0.0"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"cross-spawn": "^7.0.3",
"eslint": "^7.7.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.1.2",
"prettier": "^2.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md}": [
"prettier --trailing-comma es5 --single-quote --write"
]
},
"engines": {
"node": ">=10.16.3"
}
}