-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.51 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
63
64
{
"name": "aws-get-credentials",
"version": "2.0.0",
"description": "Create an AWS credentials instance from local credentials",
"main": "source/index.js",
"scripts": {
"docs": "jsdoc2md source/**/*.js > API.md",
"format": "prettier --write \"{source,test}/**/*.js\"",
"test": "npm run test:unit",
"test:format": "prettier --check \"{source,test}/**/*.js\"",
"test:unit": "nyc mocha -r test/index.js test/unit/**/*.spec.js"
},
"files": [
"source/**/*.js",
"*.md"
],
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/perry-mitchell/aws-get-credentials.git"
},
"keywords": [
"aws",
"credentials",
"authenticate",
"amazon",
"aws",
"credentials"
],
"author": "Perry Mitchell <perry@perrymitchell.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/perry-mitchell/aws-get-credentials/issues"
},
"homepage": "https://github.com/perry-mitchell/aws-get-credentials#readme",
"peerDependencies": {
"aws-sdk": "2.x"
},
"dependencies": {
"ini": "^1.3.8",
"pify": "^5.0.0",
"verror": "^1.9.0"
},
"devDependencies": {
"aws-sdk": "^2.961.0",
"chai": "^4.3.4",
"husky": "^4.3.8",
"jsdoc-to-markdown": "^7.0.1",
"lint-staged": "^11.1.1",
"mocha": "^9.0.3",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"sinon": "^11.1.2"
}
}