forked from banga/git-split-diffs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "git-split-diffs",
"version": "0.10.0",
"description": "Split diffs, now in your terminal",
"homepage": "https://github.com/banga/git-split-diffs",
"repository": "github:banga/git-split-diffs",
"bin": "./bin/git-split-diffs",
"files": [
"bin/*",
"build/*.js",
"themes/*.json"
],
"license": "MIT",
"engines": {
"node": ">=12"
},
"keywords": [
"git",
"terminal",
"shell",
"diff",
"diffs"
],
"dependencies": {
"ansi-regex": "^5.0.0",
"chalk": "^4.1.0",
"diff": "^5.0.0",
"shiki": "^0.9.3",
"term-size": "^2.2.1"
},
"scripts": {
"test": "tsc && jest",
"clean": "rimraf ./build/*",
"build": "yarn clean && yarn esbuild --external:ansi-regex --external:chalk --external:diff --external:shiki --external:term-size --platform=node --target=node12 --outdir=build --bundle",
"build:dev": "yarn build src/index.ts src/benchmark.ts src/previewTheme.ts",
"build:publish": "yarn build src/index.ts --minify",
"previewTheme": "nodemon -q build/previewTheme.js",
"benchmark": "yarn build:dev && node build/benchmark.js",
"prepublishOnly": "yarn test && yarn build:publish"
},
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/diff": "^5.0.0",
"@types/jest": "^26.0.22",
"@types/node": "12.12.6",
"benchmark": "^2.1.4",
"esbuild": "^0.11.9",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
}
}