generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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": "dropbox-uploader",
"version": "1.0.0",
"private": true,
"description": "Upload files to Dropbox. Support files up to 150 Gb: smallFile < 150Mb <= largeFile <=150Gb",
"main": "lib/main.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn build && yarn package"
},
"repository": "git+https://github.com/whalemare/action-dropbox",
"keywords": [
"actions",
"dropbox",
"dropbox-uploader",
"uploader",
"upload",
"cloud",
"storage",
"file",
"typescript",
"ts"
],
"author": "whalemare",
"license": "MIT",
"dependencies": {
"@actions/core": "1.2.7",
"dropbox": "9.6.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@types/node-fetch": "^2.5.10",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.25.1",
"eslint": "7.22.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-detox": "1.0.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-i18n": "2.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.5",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-unused-imports": "1.1.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"prettier": "2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}