-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.59 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
{
"name": "git-select-interactive",
"version": "0.3.3-alpha.2",
"description": "Interactive mode for git add",
"author": "Ivan Rossi <ivanross.me@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ivanross/git-select-interactive.git"
},
"bugs": {
"url": "https://github.com/ivanross/git-select-interactive/issues"
},
"homepage": "https://github.com/ivanross/git-select-interactive",
"license": "MIT",
"private": false,
"bin": "./build/cli.js",
"files": [
"build",
"docs",
"man"
],
"man": [
"./man/git-select-interactive.1"
],
"engines": {
"node": ">=8"
},
"scripts": {
"build": "rm -rf build && tsc && chmod +x build/cli.js",
"dev": "tsc --watch",
"test": "jest",
"release": "np --no-2fa",
"prerelease": "yarn build && yarn man",
"man": "rm -rf man && mkdir man && marked-man ./src/md/man.md > ./man/git-select-interactive.1"
},
"dependencies": {
"figures": "^3.2.0",
"ink": "^2.7.1",
"ink-multi-select": "^1.1.2",
"ink-text-input": "^3.2.2",
"log-symbols": "^3.0.0",
"meow": "^6.1.0",
"react": "^16.13.1",
"simple-git": "^1.132.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/meow": "^5.0.0",
"@types/node": "^13.13.2",
"@types/react": "^16.9.34",
"ink-testing-library": "^1.0.2",
"jest": "^25.4.0",
"marked": "^0.7.0",
"marked-man": "^0.7.0",
"np": "pixelastic/np#feat/no-2fa",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"jest": {
"roots": [
"<rootDir>/test"
],
"preset": "ts-jest"
}
}