-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.7 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.7 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
{
"name": "@syzygypl/export-commits",
"version": "0.0.0",
"description": "General tool for exporting and publishing commits history for some period, (by email configured in git) from given \r projects.\r Works in two modes:\r 1) Manual mode - you have manually execute command and publish results to your nelson server.\r 2) Automated mode - runs script repeatedly in background which exports and publishes your commits every month.",
"main": "./lib/index.js",
"bin": {
"export-commits": "./bin/export-commits"
},
"scripts": {
"start": "npm run build && npm run global",
"build": "npm run clean:some && npx tsc -p .",
"global": "npm i -g && export-commits",
"clean:some": "npx del-cli ./lib ./docs",
"publish-package": "npm run build && npm publish",
"docs": "typedoc --out docs ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syzygypl/export-commits.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/syzygypl/export-commits/issues"
},
"homepage": "https://github.com/syzygypl/export-commits#readme",
"devDependencies": {
"@liftr/tscov": "^2.0.0",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^8.2.1",
"@types/node": "^18.0.3",
"del-cli": "^5.0.0",
"ts-node": "^10.8.2",
"tslib": "^2.4.0",
"typedoc": "^0.23.6",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/fs-extra": "^9.0.13",
"date-fns": "^2.28.0",
"diff2html": "^3.4.17",
"figlet": "^1.5.2",
"fs-extra": "^10.1.0",
"inquirer": "^8.2.0",
"inquirer-date-prompt": "^2.0.1",
"inversify": "^6.0.1",
"kleur": "^4.1.5",
"reflect-metadata": "^0.1.13",
"simple-git": "^3.10.0"
}
}