generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.52 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
52
53
54
55
56
57
58
59
60
{
"name": "action-tinify",
"version": "0.1.0",
"private": true,
"description": "Compress and resize images with the Tinify API",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "tsc --noEmit && eslint src/**/*.ts",
"test": "jest",
"all": "npm run build && npm run format-check && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namoscato/action-tinify.git"
},
"keywords": [
"actions",
"tinify",
"tinypng",
"tinyjpg",
"image",
"compress",
"optimize",
"resize"
],
"author": "Nick Amoscato <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"bytes": "^3.1.2",
"image-size": "^1.0.2",
"mime": "^3.0.0",
"tinify": "^1.7.1"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@octokit/webhooks": "^11.0.0",
"@types/bytes": "^3.1.1",
"@types/mime": "^3.0.1",
"@types/nock": "^11.1.0",
"@types/node": "^18.15.11",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"nock": "^13.3.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
}
}