-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 2.03 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "git-date-extractor",
"version": "4.0.1",
"description": "Easily extract file dates based on git history, and optionally cache in a easy to parse JSON file.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joshuatz/git-date-extractor.git"
},
"bugs": {
"url": "https://github.com/joshuatz/git-date-extractor/issues"
},
"homepage": "https://github.com/joshuatz/git-date-extractor",
"author": {
"name": "Joshua Tzucker",
"url": "https://joshuatz.com/?utm_source=gitdateextractor&utm_medium=package"
},
"bin": {
"git-date-extractor": "dist/cli.js",
"git-dates": "dist/cli.js"
},
"main": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "npm run tsc-check && xo && nyc ava",
"lint": "xo",
"test-nolint": "nyc ava",
"build": "rm -rf dist && tsc",
"tsc-check": "tsc --noEmit",
"benchmark": "node scripts/perf-stress-test.js"
},
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"keywords": [
"cli-app",
"cli",
"git",
"date",
"timestamp",
"last-modified"
],
"dependencies": {
"fs-extra": "^8.1.0",
"meow": "^7.0.1",
"walkdir": "^0.4.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/node": "^14.0.5",
"ava": "^3.8.2",
"codecov": "^3.7.0",
"nyc": "^15.0.1",
"typescript": "^4.0.3",
"xo": "^0.25.4"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"xo": {
"rules": {
"quotes": "off",
"prefer-arrow-callback": "off",
"padding-line-between-statements": "off",
"space-before-function-paren": "off",
"max-depth": "off",
"no-path-concat": "off",
"no-useless-escape": "off",
"camelcase": "off",
"complexity": "off",
"arrow-parens": "off",
"brace-style": "off",
"unicorn/prevent-abbreviations": "off",
"unicorn/no-for-loop": "off",
"guard-for-in": "off",
"unicorn/prefer-set-has": "off",
"unicorn/better-regex": "off",
"unicorn/prefer-number-properties": "off",
"prefer-named-capture-group": "off"
},
"ignores": [
"**/*d.ts",
"src/types.ts",
"dist"
]
}
}