This repository was archived by the owner on Jul 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "git-data-loader",
"version": "1.0.0",
"description": "creates repository models ",
"main": "index.js",
"scripts": {
"init-env": "cp .example.env .env",
"watch": "nodemon --delay 5 --watch src --nolazy --exec node -r ts-node/register src/index.ts",
"go": "ts-node src/index.ts",
"build": "npm run clean && tsc -p .",
"clean": "rm -rf dist",
"limit": "ts-node src/index.ts --justShow",
"gen-input": "ts-node src/index.ts --justInput",
"gen-analyticData": "ts-node src/index.ts --justAnalysisData && zip -r -X data.zip analytics",
"test": "jest"
},
"keywords": [
"learning",
"steal-data-from-git"
],
"author": "Matthias Busch",
"license": "ISC",
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/node": "^10.12.10",
"@types/supertest": "^2.0.6",
"jest": "^23.6.0",
"nodemon": "^1.18.6",
"supertest": "^3.3.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"typescript-json-schema": "^0.33.0"
},
"dependencies": {
"@octokit/plugin-throttling": "^2.0.0",
"@octokit/rest": "^16.3.0",
"axios": "^0.18.0",
"dotenv": "^6.2.0",
"moment": "^2.23.0",
"node-fetch": "^2.3.0"
}
}