forked from Nike-Inc/aws-thin-s3-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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
{
"name": "aws-thin-s3",
"version": "0.10.2",
"description": "aws thin S3 client",
"main": "lib/s3.js",
"repository": "git@github.nike.com:ngp/aws-thin-ses.git",
"author": "Tim Kye <Timothy.Kye@nike.com>",
"license": "MIT",
"keywords": [
"aws",
"aws-sdk",
"s3",
"thin",
"lambda"
],
"files": [
"lib"
],
"engines": {
"node": ">=4"
},
"scripts": {
"style": "standard \"index.js\" \"lib/**/*.js\" | snazzy",
"style:fix": "standard \"index.js\" \"lib/**/*.js\" --fix",
"test": "npm run style && npm run test:unit",
"test:unit": "blue-tape test/**/**.spec.js | tap-spec",
"test:watch": "npm run test:unit -s & ./node_modules/.bin/chokidar 'lib/**/*.js' 'test/**/*.spec.js' --polling -c \"./node_modules/.bin/blue-tape test/**/**.spec.js | node_modules/.bin/tap-spec\"",
"test:int": "blue-tape test/**/**.int.js | tap-spec",
"test:int:coverage": "nyc --check-coverage --lines 80 npm run test:int",
"report:int": "nyc report --reporter=html",
"test:int:watch": "npm run test:int -s & ./node_modules/.bin/chokidar 'lib/**/*.js' 'test/**/*.int.js' --polling -c \"./node_modules/.bin/blue-tape test/**/**.int.js | node_modules/.bin/tap-spec\""
},
"dependencies": {
"aws4": "^1.6.0",
"request-micro": "^1.2.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"blue-tape": "^1.0.0",
"chokidar-cli": "^1.2.0",
"co": "^4.6.0",
"fuse-box": "^2.1.0",
"nyc": "^11.0.2",
"snazzy": "^7.0.0",
"standard": "^10.0.2",
"tap-spec": "^4.1.1"
}
}