-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.18 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.18 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "git-tracker-cli",
"version": "0.2.0",
"description": "The library that gives a rough estimation of the time spent on implementation based on the history of commits",
"authors": [
{
"name": "Stepan Telitsyn",
"email": "admin@notprometey.pro"
}
],
"main": "cli.js",
"homepage": "https://github.com/NotPrometey/git-tracker-cli",
"repository": {
"type": "git",
"url": "https://github.com/NotPrometey/git-tracker-cli.git"
},
"bugs": {
"url": "https://github.com/NotPrometey/git-tracker-cli/issues"
},
"keywords": [
"cli",
"git tracker",
"time tracker",
"git time tracker",
"git tracker cli",
"tracker"
],
"license": "MIT",
"bin": {
"git-tracker-cli": "./cli.js"
},
"dependencies": {
"import-jsx": "^3.0.0",
"ink": "^2.4.0",
"ink-spinner": "^3.0.1",
"lodash": "^4.17.21",
"meow": "^5.0.0",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "^16.10.1",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"ava": "^2.4.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"chalk": "^2.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-xo-react": "^0.20.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^2.5.1",
"ink-testing-library": "^1.0.3",
"xo": "^0.40.2"
},
"engines": {
"node": ">=8"
},
"files": [
"cli.js",
"app.js",
"lib/**/*.js",
"components/**/*.js"
],
"scripts": {
"lint": "node_modules/.bin/eslint ./**/*.js",
"lint:fix": "node_modules/.bin/eslint --fix ./**/*.js",
"test": "xo && ava"
},
"ava": {
"require": [
"@babel/register"
]
},
"xo": {
"extends": "xo-react"
},
"babel": {
"presets": [
"@babel/preset-react",
[
"@babel/preset-env",
{
"targets": {
"node": true
}
}
]
]
}
}