-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
49
{
"name": "@silvermine/s3-utils",
"version": "0.1.0",
"description": "Utilities functions for working with AWS S3",
"scripts": {
"commitlint": "commitlint --from 30bb876",
"check-node-version": "check-node-version --npm 8.5.5",
"test": "npm run check-node-version && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec 'tests/**/*.test.js'",
"markdownlint": "markdownlint -c .markdownlint.json '{,!(node_modules,tests/markdownlint)/**/}*.md'",
"eslint": "eslint .",
"standards": "npm run commitlint && npm run eslint && npm run markdownlint"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/s3-utils.git"
},
"keywords": [
"aws",
"s3",
"amazon web services"
],
"bugs": {
"url": "https://github.com/silvermine/s3-utils/issues"
},
"homepage": "https://github.com/silvermine/s3-utils#readme",
"peerDependencies": {
"class.extend": ">=0.9.2 <1.0.0",
"q": ">=1.4.1 <2.0.0",
"underscore": ">=1.8.3 <2.0.0"
},
"devDependencies": {
"@silvermine/eslint-config": "3.0.0-rc.0",
"@silvermine/standardization": "2.1.1",
"aws-sdk": "2.376.0",
"class.extend": "0.9.2",
"coveralls": "3.0.2",
"eslint": "6.8.0",
"expect.js": "0.3.1",
"istanbul": "0.4.5",
"mocha": "8.0.1",
"mocha-lcov-reporter": "1.3.0",
"q": "1.4.1",
"rewire": "2.5.2",
"sinon": "1.17.7",
"underscore": "1.8.3"
}
}