-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.38 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
{
"name": "jack-cli",
"version": "1.2.6",
"description": "Chop through that Git log wicked fast!",
"main": "index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/drewbrokke/jack-cli"
},
"bin": {
"jack": "index.js"
},
"engines": {
"node": ">=4"
},
"scripts": {
"build": "tsc --project .",
"clean": "rm -rf node_modules dist",
"dev": "npm run watch",
"format": "prettier --write './src/**/*.ts'",
"lint": "tslint --project . --fix",
"prebuild": "npm run clean && npm install",
"pretest": "tsc --project .",
"test": "tslint --project . && ava",
"watch": "tsc --project . --watch"
},
"prepublishOnly": "npm run build",
"author": "Drew Brokke <[email protected]> (https://github.com/drewbrokke)",
"license": "ISC",
"dependencies": {
"blessed": "^0.1.81",
"flexsearch": "^0.6.30",
"kleur": "^3.0.3",
"open": "^6.4.0"
},
"keywords": [
"cli",
"command",
"commit",
"diff",
"git",
"jack",
"line",
"log",
"look",
"lumber",
"lumberjack",
"quick",
"quicklook",
"show"
],
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@types/blessed": "^0.1.12",
"@types/node": "^9.6.1",
"ava": "^3.8.1",
"prettier": "^1.18.2",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.6.3"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
}
}
}
}