-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.5 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": "whadido",
"version": "0.1.2",
"author": "Wang Guan <[email protected]>",
"private": false,
"description": "Recover and show recent operations in a local git repository. \"what did i do\".",
"index": "build/lib/index",
"bin": {
"whadido": "bin/whadido"
},
"files": [
"bin",
"build",
"!build/__test__/"
],
"scripts": {
"start": "node build/bin/whadido",
"start:ts": "ts-node src/bin/whadido",
"debug-cli": "ts-node src/debug-cli",
"build": "rm -rvf build && tsc",
"local:install": "yarn build && yarn global add $PWD",
"webui-dev": "webpack; open ./webui-dev/index.html || xdg-open ./webui-dev/index.html",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": " eslint '**/*.@(ts|js|tsx|jsx)' 'bin/*'",
"lint:fix": "eslint '**/*.@(ts|js|tsx|jsx)' 'bin/*' --fix"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jokester/whadido.git"
},
"keywords": [
"visualization",
"git",
"reflog"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jokester/whadido/issues"
},
"homepage": "https://github.com/jokester/whadido#readme",
"dependencies": {
"argparse": "^1.0.9",
"chalk": "^2.4.1",
"immutable": "^4.0.0-rc.9",
"lodash": "^4.17.4",
"loglevel": "^1.6.1",
"moment": "^2.18.1",
"recursive-readdir": "^2.2.1",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/argparse": "^1.0.30",
"@types/jest": "^24",
"@types/lodash": "^4.14.66",
"@types/loglevel": "^1.5.3",
"@types/node": "<11",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.3",
"@types/tar": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"codecov": "^3.5.0",
"eslint": "6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24",
"node-sass": "^4.11.0",
"open-in-browser": "^0.0.3",
"prettier": "^1.18.2",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"tar": "^4.4.10",
"ts-jest": "^24",
"ts-loader": "^5.3.3",
"ts-node": "^8.1.0",
"typescript": "^3.5.3",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.3.0"
},
"resolutions": {
"@babel/core": "7.4"
}
}