-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.33 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.33 KB
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
67
68
69
70
71
72
73
74
75
76
{
"name": "@adobe/aio-lib-runtime",
"version": "7.3.0",
"license": "Apache-2.0",
"main": "src/index.js",
"bugs": {
"url": "https://github.com/adobe/aio-lib-runtime/issues"
},
"homepage": "https://github.com/adobe/aio-lib-runtime",
"repository": "https://github.com/adobe/aio-lib-runtime",
"bundleDependencies": [],
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3.0.0",
"archiver": "^6.0.1",
"dependency-tree": "^11.0.1",
"execa": "^4.0.3",
"folder-hash": "^4.0.4",
"fs-extra": "^11.3.0",
"globby": "^11.0.1",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"js-yaml": "^4.1.0",
"lodash.clonedeep": "^4.5.0",
"openwhisk": "3.21.8",
"openwhisk-fqn": "0.0.2",
"proxy-from-env": "^1.1.0",
"sha1": "^1.1.1",
"webpack": "^5.26.3"
},
"deprecated": false,
"description": "Adobe I/O Runtime Lib",
"devDependencies": {
"@adobe/aio-lib-test-proxy": "^1.0.0",
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@types/jest": "^29.5.0",
"@types/node-fetch": "^2.5.4",
"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",
"jest": "^29",
"jest-fetch-mock": "^3.0.2",
"jest-junit": "^16.0.0",
"jsdoc": "^3.6.3",
"jsdoc-to-markdown": "^8.0.0",
"memfs": "^4.6.0",
"stdout-stderr": "^0.1.9",
"tsd-jsdoc": "^2.4.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18"
},
"scripts": {
"e2e": "jest --config e2e/jest.config.js --runInBand",
"generate-docs": "npm run typings && npm run jsdoc",
"jsdoc": "jsdoc2md -t ./docs/readme_template.md src/**/*.js > README.md",
"lint": "eslint src test e2e",
"beautify": "eslint src test e2e --fix",
"test": "npm run unit-tests && npm run lint",
"typings": "jsdoc -t node_modules/tsd-jsdoc/dist -r src -d .",
"unit-tests": "jest --ci",
"version": "npm run generate-docs && git add README.md"
}
}