-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.89 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "pushfile",
"preferGlobal": true,
"version": "3.0.1",
"description": "Command line app that pushes a file to S3 and gives you a URL.",
"engines": {
"node": ">=10"
},
"main": "bin/pushfile",
"bin": {
"pushfile": "./bin/pushfile"
},
"scripts": {
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"format": "eslint --fix src",
"format:ci": "eslint src",
"develop": "tsc --watch",
"build": "tsc"
},
"watch": {
"build": "src/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshfinnie/pushfile.git"
},
"author": "Josh Finnie <josh@jfin.us>",
"contributors": [
{
"name": "Josh Finnie",
"email": "josh@jfin.us"
},
{
"name": "Will Laurance"
},
{
"name": "Matthew Chase Whittemore"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/joshfinnie/pushfile/issues"
},
"homepage": "https://github.com/joshfinnie/pushfile#readme",
"dependencies": {
"aws-sdk": "^2.912.0",
"chalk": "^4.1.1",
"clipboardy": "^2.3.0",
"commander": "^7.2.0",
"figlet": "^1.5.0",
"hashids": "^2.2.8",
"inquirer": "^8.1.0",
"mime-types": "^2.1.30"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/commander": "^2.12.2",
"@types/figlet": "^1.5.1",
"@types/inquirer": "^7.3.1",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.3.2",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
}
}