-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
64
65
66
{
"name": "@adobe/aio-lib-core-tvm",
"version": "4.0.2",
"description": "A JS client to access the Adobe I/O token vending machine",
"main": "lib/TvmClient.js",
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js",
"beautify": "npm run lint -- --fix",
"test": "jest -c ./jest.config.js && npm run lint",
"generate-jsdoc": "jsdoc2md -f 'lib/**/*.js' > doc/api.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-lib-core-tvm.git"
},
"files": [
"lib/",
"index.js"
],
"keywords": [
"core-sdk",
"nodejs",
"adobeio",
"cloud-native",
"client"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/adobe/aio-lib-core-tvm/issues"
},
"homepage": "https://github.com/adobe/aio-lib-core-tvm#readme",
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@azure/cosmos": "^4.0.0",
"@azure/storage-blob": "^12.0.0",
"@types/hapi__joi": "^17.1.9",
"@types/jest": "^29.5.7",
"aws-sdk": "^2.553.0",
"codecov": "^3.6.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"jest": "^29",
"jsdoc-to-markdown": "^8.0.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"fs-extra": "^11.1.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"upath": "^2.0.1"
}
}