-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "repository-importer",
"version": "1.0.0",
"description": "Import Repo From Github to Bitbucket and Bitbucket to Github",
"main": "src/index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node .",
"tsc": "tsc",
"build": "npm-run-all clean tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaxySpark/Repository-Importer.git"
},
"keywords": [
"Node",
"Typescript",
"Git",
"GitHUb",
"Bitbucket"
],
"author": "MaxySpark <me@maxyspark.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MaxySpark/Repository-Importer/issues"
},
"homepage": "https://github.com/MaxySpark/Repository-Importer#readme",
"devDependencies": {
"@types/cli-progress": "^1.8.1",
"@types/lodash": "^4.14.134",
"@types/node": "^12.0.8",
"@types/parse-link-header": "^1.0.0",
"@types/prompts": "^2.0.1",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.44",
"@types/shelljs": "^0.8.5",
"npm-run-all": "^4.1.5",
"ts-node": "^8.2.0",
"typescript": "^3.5.1"
},
"dependencies": {
"cli-progress": "^2.1.1",
"dotenv": "^8.0.0",
"lodash": "^4.17.11",
"ora": "^3.4.0",
"parse-link-header": "^1.0.1",
"prompts": "^2.1.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"shelljs": "^0.8.3"
}
}