-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
60
61
62
{
"name": "todo2issue",
"version": "1.2.1",
"description": "CLI tool for in-code TODO synchronization to GitHub issues",
"main": "lib/index.js",
"scripts": {
"test": "jest --config jest.config.js",
"build": "tsc -b",
"watch": "tsc -b -w",
"prepublishOnly": "npm run build"
},
"bin": {
"todo2issue": "./lib/bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salsita/todo2issue.git"
},
"keywords": [
"github",
"issue",
"todo",
"fixme",
"task"
],
"author": "Salsita <jirist@salsitasoft.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/salsita/todo2issue/issues"
},
"homepage": "https://github.com/salsita/todo2issue#readme",
"dependencies": {
"@expo/spawn-async": "^1.5.0",
"@octokit/rest": "^18.12.0",
"dotenv": "^10.0.0",
"escape-string-regexp": "^4.0.0",
"git-url-parse": "^11.6.0",
"globby": "^11.0.4",
"leasot": "^12.0.0",
"read-package-json": "^4.1.1",
"tslib": "^2.3.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/git-url-parse": "^9.0.1",
"@types/jest": "^27.0.2",
"@types/yargs": "^17.0.4",
"jest": "^27.2.5",
"ts-jest": "^27.0.6",
"typescript": "^4.4.4"
},
"todo2issue": {
"filePatterns": [
"sample/**/*.ts?(x)",
"sample/**/*.js?(x)"
],
"branch": "master",
"authorsByEmail": {
"jirist@salsitasoft.com": "goce-cz"
}
}
}