-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "git-csv-timesheet",
"version": "0.2.0",
"description": "Generate a CSV timesheet from your git repositories",
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"timesheet": "./dist/bin/timesheet.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tomfa/git-csv-timesheet.git"
},
"keywords": [
"git",
"time",
"reporting",
"csv",
"timesheet",
"hours"
],
"author": "Tomas Fagerbekk",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomfa/git-csv-timesheet/issues"
},
"homepage": "https://github.com/tomfa/git-csv-timesheet",
"dependencies": {
"commander": "^6.0.0",
"isomorphic-git": "^1.21.0",
"moment": "^2.10.6"
},
"devDependencies": {
"@askeladden/eslint-config-askeladden": "0.0.4",
"@types/jest": "^26.0.8",
"@types/moment": "^2.13.0",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-eslint": "^10.0.2",
"eslint": "^7.4.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"jest": "^26.2.2",
"lint-staged": "^10.2.11",
"np": "^6.3.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"scripts": {
"test": "jest",
"lint": "eslint ./src",
"lint:no-warnings": "eslint ./src --quiet",
"lint:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,json,mdx,md}\"",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,mdx,md}\"",
"compile": "rm -rf dist && tsc -b",
"prepublish": "yarn compile && cp package-dist.json ./dist/package.json && cp README.md ./dist/README.md",
"release": "yarn prepublish && np --contents=dist"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write",
"eslint --quiet --fix"
],
"*.{json, md}": [
"prettier --write"
]
}
}