-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"name": "github-archive-action",
"version": "1.0.0",
"description": "An action which archives GitHub data into your repository",
"main": "index.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license LICENSE --target es2020 lib/main.js",
"dist": "npm run build && npm run package",
"format": "prettier --write **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/githubocto/github-archive-action.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/githubocto/github-archive-action/issues"
},
"homepage": "https://github.com/githubocto/github-archive-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"nanoid": "^3.1.22",
"sqlite": "^4.0.21",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@vercel/ncc": "^0.27.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.1.5"
}
}