-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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
{
"name": "@adobe/aio-lib-web",
"version": "7.0.4",
"description": "Utility tooling library to build and deploy Adobe I/O Project Firefly app static sites to CDN",
"main": "index.js",
"directories": {
"lib": "lib",
"scripts": "scripts"
},
"author": "Adobe Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"repository": "adobe/aio-lib-web",
"homepage": "https://github.com/adobe/aio-lib-web",
"keywords": [
"openwhisk",
"reactjs",
"adobe-io",
"jamstack"
],
"scripts": {
"lint": "eslint .",
"beautify": "npm run lint -- --fix",
"test": "npm run unit-test && npm run lint",
"unit-test": "jest --forceExit --detectOpenHandles -c ./jest.config.js",
"generate-jsdoc": "jsdoc2md -f index.js > doc/api.md",
"e2e": "jest --config='./e2e/jest.config.js' --testRegex './e2e/e2e.js'"
},
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-tvm": "^4",
"@aws-sdk/client-s3": "^3.624.0",
"core-js": "^3.25.1",
"fs-extra": "^11",
"joi": "^17.2.1",
"klaw": "^4",
"lodash.clonedeep": "^4.5.0",
"mime-types": "^2.1.24",
"parcel": "^2.7.0",
"regenerator-runtime": "^0.13.7"
},
"devDependencies": {
"@types/hapi__joi": "^17",
"@types/jest": "^29",
"eslint": "^8",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^27.0.2",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^6",
"eslint-plugin-standard": "^5",
"jest": "^29",
"jsdoc-to-markdown": "^8",
"memfs": "^3.4.7",
"node-fetch": "^2.6.7"
}
}