-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "workitem",
"version": "2.3.11",
"description": "a git based work item tracker",
"main": "dist/cli.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --config .prettierrc \"src/**/*.ts\" --write",
"prepublish": "tsc",
"postpublish": "yarn rimraf dist"
},
"files": [
"/bin",
"/dist",
"/docs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benbenbenbenbenben/workitem.git"
},
"keywords": [
"git",
"workitem",
"tracking",
"backlog"
],
"author": "Benjamin Babik",
"license": "MIT",
"bugs": {
"url": "https://github.com/benbenbenbenbenben/workitem/issues"
},
"homepage": "https://github.com/benbenbenbenbenben/workitem#readme",
"bin": {
"workitem": "./bin/cli",
"wi": "./bin/cli"
},
"dependencies": {
"@types/fs-extra": "^5.0.4",
"@types/shelljs": "^0.8.5",
"chalk": "^4.1.2",
"fs-extra": "^10.0.0",
"shelljs": "^0.8.4",
"tibu": "^0.0.1-alpha3",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5"
}
}