-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "serverless-s3-assets",
"version": "1.0.2",
"description": "Uploads requested assets to S3 as part of Serverless deploy",
"main": "index.js",
"dependencies": {
"aws-sdk": "^2.6.9",
"mime-types": "^2.1.18"
},
"devDependencies": {
"chai": "^3.5",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^2.4",
"mocha-lcov-reporter": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dittto/serverless-s3-assets.git"
},
"keywords": [
"serverless",
"package",
"includes"
],
"author": "Nick Stacey @ditt_to",
"license": "ISC",
"bugs": {
"url": "https://github.com/dittto/serverless-s3-assets/issues"
},
"homepage": "https://github.com/dittto/serverless-s3-assets#readme",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}