-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.4 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
61
62
63
64
{
"name": "@woolson/send",
"version": "1.8.1",
"description": "Get image link by gitlab/aws/imgur.",
"main": "index.js",
"bin": {
"send-img": "./bin/send-imgur.js",
"send-aws": "./bin/send-aws.js",
"send-gl": "./bin/send-gitlab.js",
"send-ls": "./bin/send-list.js",
"send-config": "./bin/send-config.js"
},
"scripts": {
"lint": "eslint --ext .js ."
},
"keywords": [
"send",
"image link",
"clipboard",
"upload",
"imgur",
"aws",
"gitlab"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "Woolson Lee",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.582.0",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"clipboardy": "^2.0.0",
"commander": "^2.19.0",
"date-format": "^3.0.0",
"execa": "^1.0.0",
"ext-name": "^5.0.0",
"form-data": "^3.0.0",
"got": "^9.6.0",
"htmlparser2": "^4.0.0",
"imageinfo": "^1.0.4",
"node-electron-clipboard": "^0.2.0",
"ora": "^3.1.0",
"prompts": "^2.3.0",
"uid": "0.0.2",
"user-home": "^2.0.0",
"yaml": "^1.3.2"
},
"devDependencies": {
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1"
},
"engines": {
"node": ">=10"
}
}