-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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
{
"name": "@adobe/aio-sdk-core",
"version": "3.0.0",
"description": "Module that contains all the Adobe I/O Core SDKs",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && jest --coverage",
"lint": "eslint .",
"gen-health": "gen-health-table health.json",
"docs": "jsdoc2md -f 'src/*.js' > doc/api.md"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/aio-sdk-core.git"
},
"engines": {
"node": ">=18"
},
"author": "Adobe Inc.",
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-core-tvm": "^4"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@adobe/gen-health-table": "^2.0.0",
"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"
}
}