@ibm-cloud/secrets-manager 2.1.0 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -4
- package/package.json +2 -3
- package/.gitattributes +0 -1
- package/.prettierrc.js +0 -6
- package/.releaserc +0 -33
- package/CODE_OF_CONDUCT.md +0 -62
- package/CONTRIBUTING.MD +0 -23
- package/LICENSE +0 -176
- package/dist/.gitattributes +0 -1
- package/dist/.prettierrc.js +0 -6
- package/dist/.releaserc +0 -33
- package/dist/CODE_OF_CONDUCT.md +0 -62
- package/dist/CONTRIBUTING.MD +0 -23
- package/dist/LICENSE +0 -176
- package/dist/README.md +0 -240
- package/dist/examples/secrets-manager.v2.test.js +0 -1393
- package/dist/package.json +0 -55
- package/dist/renovate.json +0 -6
- package/dist/tsconfig.json +0 -34
- package/examples/secrets-manager.v2.test.js +0 -1393
- package/renovate.json +0 -6
- package/tsconfig.json +0 -34
- /package/{dist/auth → auth}/index.d.ts +0 -0
- /package/{dist/auth → auth}/index.js +0 -0
- /package/{dist/auth → auth}/index.js.map +0 -0
- /package/{dist/lib → lib}/common.d.ts +0 -0
- /package/{dist/lib → lib}/common.js +0 -0
- /package/{dist/lib → lib}/common.js.map +0 -0
- /package/{dist/secrets-manager → secrets-manager}/v2.d.ts +0 -0
- /package/{dist/secrets-manager → secrets-manager}/v2.js +0 -0
- /package/{dist/secrets-manager → secrets-manager}/v2.js.map +0 -0
package/dist/package.json
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ibm-cloud/secrets-manager",
|
|
3
|
-
"version": "2.1.0",
|
|
4
|
-
"description": "Client library for IBM Cloud Secrets Manager",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "https://github.com/IBM/secrets-manager-node-sdk"
|
|
8
|
-
},
|
|
9
|
-
"keywords": [
|
|
10
|
-
"ibm",
|
|
11
|
-
"secrets-manager"
|
|
12
|
-
],
|
|
13
|
-
"author": "IBM Corp.",
|
|
14
|
-
"scripts": {
|
|
15
|
-
"eslint:fix": "eslint . --fix",
|
|
16
|
-
"eslint:check": "eslint . --cache",
|
|
17
|
-
"lint": "npm run eslint:check",
|
|
18
|
-
"lint-fix": "npm run eslint:fix",
|
|
19
|
-
"build": "tsc && cp package.json dist/ && cp README.md dist/",
|
|
20
|
-
"prepare-publish": "npx @masterodin/publisher --dry-run --no-checks",
|
|
21
|
-
"postversion": "npm run prepare-publish",
|
|
22
|
-
"dry-publish": "npm run build && npm run prepare-publish",
|
|
23
|
-
"publishDist": "npm run build && cd dist && npm publish --access public",
|
|
24
|
-
"jest": "jest",
|
|
25
|
-
"test": "npm run build && jest test/",
|
|
26
|
-
"test-unit": "npm run build && jest test/unit/",
|
|
27
|
-
"test-integration": "npm run build && jest test/integration",
|
|
28
|
-
"test-examples": "npm run build && jest examples/",
|
|
29
|
-
"test-travis": "jest --runInBand --testNamePattern='^((?!@slow).)*$' test/",
|
|
30
|
-
"test-unit-travis": "jest --runInBand test/unit/",
|
|
31
|
-
"test-integration-travis": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
|
|
32
|
-
"report-coverage": "codecov",
|
|
33
|
-
"check-packages": "installed-check -e -d -v"
|
|
34
|
-
},
|
|
35
|
-
"license": "Apache-2.0",
|
|
36
|
-
"engines": {
|
|
37
|
-
"node": ">=22.0.0"
|
|
38
|
-
},
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"extend": "^3.0.2",
|
|
41
|
-
"ibm-cloud-sdk-core": "^5.4.10"
|
|
42
|
-
},
|
|
43
|
-
"overrides": {
|
|
44
|
-
"js-yaml": "^4.1.1"
|
|
45
|
-
},
|
|
46
|
-
"jest": {
|
|
47
|
-
"collectCoverage": true,
|
|
48
|
-
"coverageDirectory": "./coverage/",
|
|
49
|
-
"coveragePathIgnorePatterns": [
|
|
50
|
-
"<rootDir>/test/",
|
|
51
|
-
"<rootDir>/examples/"
|
|
52
|
-
],
|
|
53
|
-
"testEnvironment": "node"
|
|
54
|
-
}
|
|
55
|
-
}
|
package/dist/renovate.json
DELETED
package/dist/tsconfig.json
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Basic Options */
|
|
4
|
-
"target": "es5",
|
|
5
|
-
/* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
|
|
6
|
-
"module": "commonjs",
|
|
7
|
-
/* Specify module code generation: 'none', commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
|
8
|
-
"lib": [
|
|
9
|
-
"es5",
|
|
10
|
-
"es2015",
|
|
11
|
-
"dom",
|
|
12
|
-
"scripthost"
|
|
13
|
-
],
|
|
14
|
-
/* Build source files into a folder called `dist` to maintain clean directories, free of ts-generated files */
|
|
15
|
-
"outDir": "./dist",
|
|
16
|
-
/* Specify library files to be included in the compilation: */
|
|
17
|
-
"declaration": true,
|
|
18
|
-
/* Generates corresponding '.d.ts' file. */
|
|
19
|
-
"sourceMap": true,
|
|
20
|
-
/* Generates corresponding '.map' file. */
|
|
21
|
-
|
|
22
|
-
/* Strict Type-Checking Options */
|
|
23
|
-
"alwaysStrict": true,
|
|
24
|
-
/* Parse in strict mode and emit "use strict" for each source file. */
|
|
25
|
-
|
|
26
|
-
/* Module Resolution Options */
|
|
27
|
-
"moduleResolution": "node",
|
|
28
|
-
/* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
|
|
29
|
-
"types": [
|
|
30
|
-
"node"
|
|
31
|
-
]
|
|
32
|
-
/* Type declaration files to be included in compilation. */
|
|
33
|
-
}
|
|
34
|
-
}
|