-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "upload-image",
"version": "1.5.0",
"description": "An action that uploads an image and stores a url to it.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"prepare:delete-imgbb-image": "ncc build delete-imgbb-image.js -o dist/delete-imgbb-image --source-map --license licenses.txt",
"build": "npm run prepare && npm run prepare:delete-imgbb-image",
"test": "jest",
"all": "npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/McCzarny/upload-image.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Image"
],
"exports": {
".": "./dist/index.js",
"./delete-imgbb-image.js": "./dist/delete-imgbb-image.js"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/McCzarny/upload-image/issues"
},
"homepage": "https://github.com/McCzarny/upload-image#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"acorn": "^8.8.0",
"axios": "^1.7.8",
"form-data": "^4.0.1",
"jquery": "^3.7.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"dotenv": "^16.4.7",
"eslint": "^9.16.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^28.9.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"node-fetch": "^2.7.0"
}
}