forked from adobe/aio-lib-ims
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.99 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
63
{
"name": "@adobe/aio-lib-ims",
"description": "Adobe IMS (Identity Management System) Support Module providing low level IMS HTTP API access as well as higher level support for getting tokens.",
"version": "6.4.0",
"author": "Adobe Inc.",
"bugs": "https://github.com/adobe/aio-lib-ims/issues",
"dependencies": {
"@adobe/aio-lib-core-config": "^3.0.0",
"@adobe/aio-lib-core-errors": "^3.1.0",
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-core-networking": "^3.0.0",
"@adobe/aio-lib-env": "^2.0.0",
"@adobe/aio-lib-ims-jwt": "^4.0.0",
"@adobe/aio-lib-ims-oauth": "^5.3.0",
"@adobe/aio-lib-state": "^2.0.1",
"form-data": "^4.0.0",
"lodash.clonedeep": "^4.5.0",
"lru-cache": "^5.1.1"
},
"devDependencies": {
"@adobe/aio-lib-test-proxy": "^1.0.0",
"@adobe/eslint-config-aio-lib-config": "^2",
"@types/jest": "^29.5.0",
"dotenv": "^8.2.0",
"eslint": "^8",
"eslint-config-oclif": "^4.0.0",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^23",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6",
"eslint-plugin-standard": "^5.0.0",
"jest": "^29",
"jest-junit": "^10.0.0",
"jsdoc-to-markdown": "^8.0.0",
"stdout-stderr": "^0.1.9",
"typescript": "^4.5.2"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
},
"files": [
"/src"
],
"homepage": "https://github.com/adobe/aio-lib-ims",
"keywords": [
"aio-lib",
"ims"
],
"license": "Apache-2.0",
"main": "src/index.js",
"repository": "https://github.com/adobe/aio-lib-ims",
"scripts": {
"posttest": "eslint src test",
"test": "npm run unit-tests",
"unit-tests": "jest --config test/jest.config.js --ci -w=2",
"e2e": "jest --config e2e/jest.config.js",
"docs": "jsdoc2md --template jsdoc2md/api.hbs src/*.js src/**/*.js > api.md",
"version": "git add README.md"
}
}