generated from adobe/aio-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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-events",
"version": "4.0.1",
"description": "Adobe I/O Events",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-lib-events.git"
},
"license": "Apache-2.0",
"main": "src/index.js",
"scripts": {
"test": "npm run unit-tests && npm run lint",
"lint": "eslint src test e2e",
"unit-tests": "jest --config test/jest.config.js --maxWorkers=2",
"e2e": "jest --config e2e/jest.config.js",
"typings": "jsdoc -t node_modules/tsd-jsdoc/dist -r src/index.js -d .",
"generate-docs": "npm run typings && npm run jsdoc",
"jsdoc": "jsdoc2md -t ./docs/readme_template.md ./src/index.js > README.md"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"@adobe/aio-lib-state": "^3",
"crypto-js": "^4.0.0",
"http-link-header": "^1.0.2",
"node-fetch": "^2.6.0",
"rxjs": "^7.8.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@js-joda/core": "^2.0.0",
"babel-runtime": "^6.26.0",
"codecov": "^3.5.0",
"dotenv": "^16.3.1",
"eol": "^0.9.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",
"eslint-plugin-standard": "^4.0.1",
"jest": "^29.6.1",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^16.0.0",
"jest-plugin-fs": "^2.9.0",
"jsdoc": "^3.6.7",
"jsdoc-to-markdown": "^8.0.0",
"openapi-schema-validator": "^12.1.3",
"querystring": "^0.2.0",
"stdout-stderr": "^0.1.13",
"tsd-jsdoc": "^2.4.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18"
}
}