-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "action-archiver",
"version": "1.1.2",
"description": "Github action to generate tar/zip archives",
"author": "sibiraj-s",
"license": "MIT",
"private": "true",
"repository": "https://github.com/sibiraj-s/action-archiver.git",
"bugs": "https://github.com/sibiraj-s/action-archiver/issues",
"homepage": "https://github.com/sibiraj-s/action-archiver#readme",
"main": "lib/main.js",
"keywords": [
"github-actions",
"archiver",
"artifacts"
],
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"test": "jest --runInBand",
"test:watch": "jest --watch --runInBand",
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@actions/core": "^1.10.0",
"archiver": "^5.3.1",
"is-glob": "^4.0.3"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@jest/globals": "^29.5.0",
"@types/archiver": "^5.3.2",
"@types/is-glob": "^4.0.2",
"@vercel/ncc": "^0.36.1",
"commitlint-config-non-conventional": "^1.0.1",
"eslint": "^8.44.0",
"eslint-config-pegasus": "^4.0.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"jszip": "^3.10.1",
"lint-staged": "^13.2.3",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}