-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "github-tools",
"version": "1.0.0",
"description": "Github scripts by using git rest api",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"all": "npm run build && npm run format && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JackTn/github-tools.git"
},
"author": "JackTn",
"license": "ISC",
"bugs": {
"url": "https://github.com/JackTn/github-tools/issues"
},
"homepage": "https://github.com/JackTn/github-tools#readme",
"devDependencies": {
"@types/node": "^18.8.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@octokit/core": "^4.0.5",
"@octokit/plugin-paginate-rest": "^4.3.1",
"@octokit/plugin-rest-endpoint-methods": "^6.6.2",
"@octokit/plugin-throttling": "^4.3.0",
"@types/lodash": "^4.14.186",
"dotenv": "^16.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prettier": "^2.7.1",
"xlsx": "^0.18.5"
}
}