-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 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
{
"name": "@adobe/aio-lib-core-auth",
"version": "1.1.0",
"description": "Adobe I/O Core Authentication Library",
"main": "src/index.js",
"types": "types.d.ts",
"scripts": {
"test": "vitest run --coverage",
"lint": "eslint src test",
"generate-docs": "jsdoc2md src/*.js > doc/api.md"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/aio-lib-core-auth"
},
"keywords": [
"adobe",
"adobe-io",
"aio",
"aio-lib",
"aio-lib-core",
"aio-sdk-core",
"authentication",
"auth"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/aio-lib-core-auth/issues"
},
"homepage": "https://github.com/adobe/aio-lib-core-auth#readme",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^3.0.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^42.0.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jsdoc-to-markdown": "^8.0.0",
"stdout-stderr": "^0.1.13",
"vitest": "^2.1.8"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^4.0.0",
"@isaacs/ttlcache": "^2.1.4"
}
}