-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.62 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.62 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
{
"name": "cache-manager-s3",
"version": "1.3.0",
"description": "Cache manager module for S3",
"main": "src/index.js",
"keywords": [
"cache",
"caching",
"cache-manager",
"s3",
"aws",
"bucket",
"plugin",
"backend",
"module"
],
"repository": "https://github.com/tprobinson/node-cache-manager-s3.git",
"bugs": {
"url": "https://github.com/tprobinson/node-cache-manager-s3.git/issues"
},
"homepage": "https://github.com/tprobinson/node-cache-manager-s3#readme",
"author": {
"name": "Trevor Robinson",
"url": "https://keybase.io/tpr"
},
"license": "MIT",
"scripts": {
"lint": "eslint src/ test/ __mocks__/",
"lintfix": "eslint --fix src/ test/ __mocks__/",
"test": "yarn run lint && jest --maxWorkers=4",
"test:coveralls": "yarn run test --coverage --coverageReporters=text-lcov | yarn exec coveralls",
"test:real": "yarn run lint && env USE_REAL_AWS=true yarn run test --runInBand"
},
"devDependencies": {
"cache-manager": "^2.10.0",
"coveralls": "*",
"eslint": "*",
"eslint-config-standard": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"eslint-plugin-node": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-standard": "*",
"jest": "^24.8.0",
"random-words": "*"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
]
},
"dependencies": {
"aws-sdk": "^2.493.0",
"chalk": "^2.4.2",
"checksum": "^0.1.1",
"loglevel": "^1.6.3",
"loglevel-plugin-prefix": "^0.8.4",
"moment": "^2.24.0",
"url-parse": "^1.4.7"
}
}