-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.55 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "git-blame-line",
"description": "Execute git blame for a single line and get a JSON as result",
"license": "MPL-2.0",
"author": {
"name": "Brkn",
"email": "[email protected]",
"url": "https://berkan.dev/"
},
"contributors": [
"Konstantin Vyatkin <[email protected]>",
"Brkn <[email protected]> (https://berkan.dev/)"
],
"homepage": "https://github.com/brkn/git-blame-line#readme",
"repository": {
"type": "git",
"url": "https://github.com/brkn/git-blame-line.git"
},
"bugs": {
"url": "https://github.com/brkn/git-blame-line/issues"
},
"version": "0.2.4",
"main": "lib/index.js",
"bin": {
"blame-line": "lib/cli.js"
},
"files": [
"lib/**/*",
"README.md",
"LICENSE",
"package.json",
"yarn.lock"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest --coverage --verbose",
"typecheck": "echo \"type-checking...\" && tsc --noEmit",
"eslint": "eslint src/",
"eslint:fix": "eslint --fix src/",
"prepublishOnly": "yarn build"
},
"dependencies": {
"camel-case": "4.1.1",
"date-fns": "2.16.1",
"meow": "8.0.0"
},
"devDependencies": {
"@types/node": "^12.19.4",
"@typescript-eslint/eslint-plugin": "4.7.0",
"@typescript-eslint/parser": "4.7.0",
"eslint": "7.13.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"husky": "4.3.0",
"typescript": "4.0.3"
},
"keywords": [
"blame",
"git",
"git-blame",
"typescript"
],
"engines": {
"node": ">=8"
}
}