-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "s3-deploy",
"version": "0.4.0",
"description": "NodeJS bash utility for deploying files to Amazon S3",
"scripts": {
"test": "mocha",
"lint": "./node_modules/.bin/eslint src test && babel src --out-dir dist",
"prepublish": "npm run lint && npm test",
"coverage": "babel-node node_modules/.bin/isparta cover --report html node_modules/.bin/_mocha",
"release": "npm run prepublish",
"npmrc": "printf \"_auth = $NPM_AUTH_TOKEN\nemail = $NPM_EMAIL\n\" > .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.1.36",
"co": "^4.5.4",
"co-fs-extra": "^1.0.1",
"glob": "^5.0.12",
"lodash": "^3.9.3",
"mime": "^1.3.4",
"minimist": "^1.1.1",
"babel-polyfill": "^6.7.2"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-eslint": "^6.0.2",
"babel-plugin-espower": "^2.1.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"isparta": "^3.0.3",
"mocha": "^2.2.5"
},
"bin": ".bin/s3-deploy"
}