forked from adobe/aio-lib-core-networking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.11 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
{
"name": "@adobe/aio-lib-core-networking",
"homepage": "https://github.com/adobe/aio-lib-core-networking",
"license": "Apache-2.0",
"main": "src/index.js",
"repository": "https://github.com/adobe/aio-lib-core-networking",
"version": "3.0.0",
"bugs": {
"url": "https://github.com/adobe/aio-lib-core-networking/issues"
},
"bundleDependencies": [],
"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",
"fetch-retry": "^3.0.1",
"http-proxy-agent": "^4.0.1",
"https-proxy-agent": "2.2.4",
"node-fetch": "^2.6.4",
"proxy-from-env": "^1.1.0"
},
"deprecated": false,
"description": "Adobe I/O Lib Core Networking",
"devDependencies": {
"@adobe/aio-lib-test-proxy": "^1.0.0",
"@adobe/eslint-config-aio-lib-config": "^2.0.0",
"babel-runtime": "^6.26.0",
"dotenv": "^8.1.0",
"eol": "^0.9.1",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.0.0",
"fetch-mock": "^9.0.0",
"jest": "^25.5.4",
"jest-fetch-mock": "^3.0.1",
"jest-html-reporter": "^3.4.1",
"jest-junit": "^10.0.0",
"jest-plugin-fs": "^2.9.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^5.0.3",
"openapi-schema-validator": "^3.0.3",
"query-string": "^7.0.1",
"stdout-stderr": "^0.1.9",
"tsd-jsdoc": "^2.4.0",
"typescript": "^4.7.3"
},
"scripts": {
"e2e": "jest --config e2e/jest.config.js",
"generate-docs": "npm run typings && npm run jsdoc",
"jsdoc": "jsdoc2md -t ./docs/readme_template.md src/**/*.js > README.md",
"lint": "eslint src test",
"test": "npm run lint && npm run unit-tests",
"typings": "jsdoc -t node_modules/tsd-jsdoc/dist -r src/*.js -d .",
"unit-tests": "jest --config test/jest.config.js --runInBand"
},
"engines": {
"node": "^14.16 || ^16.13 || >=18"
}
}