-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 993 Bytes
/
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
{
"name": "estiga",
"version": "2.0.1",
"description": "a tiny helper library for doing AWS S3 stuff",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cermati/estiga.git"
},
"keywords": [
"s3",
"wrapper",
"node"
],
"author": "Cermati",
"license": "MIT",
"bugs": {
"url": "https://github.com/cermati/estiga/issues"
},
"homepage": "https://github.com/cermati/estiga#readme",
"dependencies": {
"bluebird": "~3.5.1",
"crypto": "~1.0.1",
"knox-s3": "~0.9.5",
"lodash": "~4.17.5"
},
"devDependencies": {
"chai": "~4.1.2",
"eslint": "~6.8.0",
"eslint-config-airbnb": "~16.1.0",
"eslint-plugin-import": "~2.9.0",
"eslint-plugin-jsx-a11y": "~6.0.3",
"eslint-plugin-react": "~7.7.0",
"mocha": "~7.1.1",
"proxyquire": "~2.0.0",
"sinon": "~4.4.2",
"sinon-chai": "~3.0.0"
}
}