This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
62 lines (62 loc) · 2.06 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cerberus-node-client",
"version": "4.0.0",
"description": "Node client for Cerberus Key Mgmt",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "npm run style && npm run test:unit:local",
"test:all": "npm run style && npm run test:unit:local && npm run test:integration",
"test:unit:ci-report-coverage": "jest test/ --coverage --coverageReporters=text-lcov --collectCoverageFrom=lib/**/*.js --collectCoverageFrom=index.js --collectCoverageFrom=!lib/sts.js | coveralls",
"test:unit:local": "jest test/ --coverage --collectCoverageFrom=lib/**/*.js --collectCoverageFrom=index.js --collectCoverageFrom=!lib/sts.js",
"test:integration": "PROJECT_DIR=$(pwd) jest integration/",
"style": "standard --env jest \"index.js\" \"test/**/*.js\" | snazzy",
"style:fix": "standard --env jest \"index.js\" \"test/**/*.js\" --fix",
"generate-docs": "./scripts/generate-docs.sh",
"deploy-docs": "gh-pages -d build/docs",
"travis-deploy-github-pages": "gh-pages -r \"https://${GH_TOKEN}@github.com/Nike-Inc/cerberus-node-client.git\" -d build/docs"
},
"repository": {
"type": "git",
"url": "https://github.com/Nike-Inc/cerberus-node-client.git"
},
"keywords": [
"nike",
"cerberus"
],
"files": [
"index.js",
"index.d.ts",
"lib"
],
"engines": {
"node": ">=4.0.0"
},
"author": "Tim Kye",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-sts": "^3.204.0",
"@aws-sdk/credential-provider-node": "^3.204.0",
"@aws-sdk/credential-provider-web-identity": "^3.201.0",
"exponential-backoff": "^3.1.0",
"form-data": "^4.0.0",
"request-micro": "^1.5.1"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.27.0",
"gh-pages": "^4.0.0",
"json-schema": "0.4.0",
"ink-docstrap": "^1.3.2",
"moment": "^2.29.4",
"jest": "^29.2.2",
"jest-mock-console": "^2.0.0",
"jsdoc": "^3.6.11",
"minimist": "^1.2.7",
"nyc": "^15.1.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap-spec": "^5.0.0",
"uuid": "^9.0.0"
}
}