-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.65 KB
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
{
"name": "@foo-software/s3-directory-sync-cli",
"version": "2.1.1",
"description": "A CLI to sync a local directory with an AWS S3 bucket.",
"bin": {
"s3-directory-sync": "dist/bin/sync.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "babel ./src --out-dir dist",
"prepare": "npm run clean && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foo-software/s3-directory-sync-cli.git"
},
"author": "Adam Henson <adamhenson1979@gmail.com> (https://github.com/adamhenson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foo-software/s3-directory-sync-cli/issues"
},
"homepage": "https://github.com/foo-software/s3-directory-sync-cli#readme",
"keywords": [
"sync",
"aws",
"s3",
"sync",
"upload",
"uploader",
"cli"
],
"dependencies": {
"aws-sdk": "^2.900.0",
"cli-progress-bar": "^1.0.1",
"install": "^0.13.0",
"mime-types": "^2.1.30",
"npm": "^7.11.2",
"recursive-readdir": "^2.2.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier": "1.18.2",
"rimraf": "^2.6.3"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}