-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.32 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": "repo-copy",
"version": "1.0.0",
"description": "Create new GitHub repositories based on templates",
"main": "createRepoController.js",
"bin": {
"repo-copy": "./cli.js",
"start-server": "./createRepoController.js"
},
"scripts": {
"test": "xo && server.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/bidnessforb/repo-copy.git"
},
"keywords": [
"repository",
"GitHub",
"template"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/bidnessforb/repo-copy/issues"
},
"homepage": "https://github.com/bidnessforb/repo-copy#readme",
"dependencies": {
"@octokit/rest": "^15.9.3",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"debug": "^3.1.0",
"deep-diff": "^1.0.1",
"hashmap": "^2.3.0",
"httpdispatcher": "^2.0.1",
"jsonschema": "^1.2.4",
"markdown-to-html": "0.0.13",
"npm": "^6.1.0"
},
"devDependencies": {
"xo": "^0.18.2"
},
"engines": {
"node": "10.6.0"
},
"xo": {
"overrides": [
{
"files": "repoController.js",
"rules": {
"camelcase": [
"error",
{
"properties": "never"
}
]
}
}
]
}
}