forked from hartz89/s3-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "s3-deploy",
"version": "1.2.0",
"description": "NodeJS bash utility for deploying files to Amazon S3",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint src test",
"prepublishOnly": "npm install && npm run lint && npm test",
"prepare": "babel src --out-dir dist",
"coverage": "babel-node node_modules/.bin/isparta cover --report html node_modules/.bin/_mocha",
"release": "npm run prepublishOnly",
"npmrc": "printf \"//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN\" > .npmrc"
},
"repository": {
"type": "git",
"url": "https://github.com/import-io/s3-deploy.git"
},
"author": "Dominik Deren (@domderen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/import-io/s3-deploy/issues"
},
"homepage": "https://github.com/import-io/s3-deploy#readme",
"dependencies": {
"aws-sdk": "^2.334.0",
"babel-polyfill": "^6.26.0",
"co": "^4.5.4",
"co-fs-extra": "^1.0.1",
"glob": "^7.1.3",
"globrex": "^0.1.1",
"lodash": "^4.17.11",
"mime": "^1.4.1",
"minimist": "^1.1.1"
},
"devDependencies": {
"aws-sdk-mock": "^4.3.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-espower": "^3.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"eslint": "^5.9.0",
"eslint-plugin-babel": "^5.3.0",
"mocha": "^5.2.0"
},
"bin": {
"s3-deploy": "bin/s3-deploy"
}
}