-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "@adobe/aio-lib-core-logging",
"version": "3.0.2",
"description": "Logger framework for the Adobe I/O SDK",
"main": "src/AioLogger.js",
"types": "types/AioLogger.d.ts",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && jest --coverage",
"types": "npx tsc --allowJs --declaration --emitDeclarationOnly --outDir ./types ./src/AioLogger.js",
"docs": "jsdoc2md -f 'src/*.js' > doc/api.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-lib-core-logging.git"
},
"author": "",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"debug": "^4.1.1",
"winston": "^3.2.1"
},
"files": [
"src",
"types"
],
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@types/jest": "^29.5.1",
"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",
"fs-extra": "^11.1.1",
"jest": "^29.3.1",
"jsdoc-to-markdown": "^8.0.0",
"typescript": "^5.1.6"
}
}