-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 991 Bytes
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 991 Bytes
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
{
"name": "git-sql-log",
"version": "0.2.0",
"description": "Search Git log by sql",
"repository": "jy0529/git-sql-log",
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"import": {
"ramda": "./node_modules/ramda/es/index.js"
},
"engines": {
"node": ">=14.16"
},
"sideEffects": false,
"scripts": {
"build": "tsc --project tsconfig.json",
"prepublish": "npm run build",
"test": "jest"
},
"files": [
"dist"
],
"keywords": [
"git",
"log",
"sql",
"git log",
"git extra",
"git effort",
"terminal",
"shell"
],
"author": "Jy <pureJy@163.com>",
"license": "MIT",
"dependencies": {
"date-fns": "^2.30.0",
"node-sql-parser": "^4.7.0",
"ramda": "^0.29.0",
"simple-git": "^3.19.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/ramda": "^0.29.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}