-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 882 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 882 Bytes
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
{
"name": "figshare-upload-action",
"description": "Upload files to figshare.com",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/figshare/github-upload-action",
"author": "Daniel Gavrila",
"scripts": {
"package": "ncc build index.js -o dist",
"eslint": "eslint ./ --ext=js,mjs"
},
"dependencies": {
"@actions/core": "^1.2.6",
"md5-file": "^5.0.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"@vercel/ncc": "0.26.2",
"eslint": "^7.18.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0"
}
}