forked from Georift/own-contribution-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 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
{
"name": "own-contribution-graph",
"version": "1.1.0",
"description": "Replicate contributions from external git hosts to GitHub",
"main": "dist/index.js",
"files": [
"dist/*",
"!dist/*.map"
],
"bin": {
"owncontributiongraph": "dist/index.js"
},
"scripts": {
"start": "ts-node src/index.ts",
"build": "npm run lint && tsc && sed -i '1s|#!/usr/bin/env ts-node|#!/usr/bin/env node|' dist/index.js",
"prepack": "npm run build",
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
"release": "git push && git push --tags && npm ci && npm publish",
"release-major": "npm version major && npm run release",
"release-minor": "npm version minor && npm run release",
"release-patch": "npm version patch && npm run release"
},
"repository": {
"type": "git",
"url": "https://github.com/Georift/own-contribution-graph"
},
"keywords": [
"git",
"contribution"
],
"author": "Georift",
"license": "ISC",
"dependencies": {
"joi": "^17.7.0",
"ramda": "^0.28.0",
"yargs": "^17.6.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/ramda": "^0.28.20",
"@types/tmp": "^0.2.3",
"@types/yargs": "^17.0.18",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}