-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.34 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.34 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
{
"name": "issuesync",
"version": "1.0.0",
"description": "A library and CLI tool for listing and synchronizing issues between GitHub repositories",
"main": "lib/index.js",
"bin": {
"issuesync": "./cli.js"
},
"scripts": {
"start": "node cli.js",
"dev": "nodemon cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run validate",
"validate": "node -c lib/index.js && node -c cli.js",
"example:web": "node examples/web-app-integration.js",
"example:cli": "node examples/custom-cli.js",
"example:ci": "node examples/ci-cd-integration.js"
},
"keywords": [
"github",
"issues",
"synchronization",
"cli",
"library",
"api",
"github-api",
"issue-management",
"repository-sync",
"automation"
],
"author": "kybaloo",
"contributors": [
{
"name": "kybaloo",
"email": "kybalooflo@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kybaloo/issuesync.git"
},
"bugs": {
"url": "https://github.com/kybaloo/issuesync/issues"
},
"homepage": "https://github.com/kybaloo/issuesync#readme",
"type": "commonjs",
"dependencies": {
"@octokit/rest": "^20.1.1",
"dotenv": "^16.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}