-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
70 lines (70 loc) · 2.26 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
66
67
68
69
70
{
"name": "@adobe/aio-lib-files",
"version": "4.1.0",
"description": "An abstraction on top of blob cloud storage exposing a file like API",
"main": "lib/init.js",
"directories": {
"lib": "lib"
},
"types": "./types.d.ts",
"scripts": {
"lint": "eslint lib test",
"beautify": "npm run lint -- --fix",
"test": "npm run unit && npm run lint",
"unit": "jest -c ./jest.config.js",
"e2e": "jest -c ./jest.e2e.config.js",
"hide-protected": "replace-in-file /@protected/g '@private hidden' lib/Files.js --isRegex",
"show-protected": "replace-in-file /@private\\\\shidden/g @protected lib/Files.js --isRegex",
"jsdoc": "npm run hide-protected && jsdoc2md --example-lang js -f 'lib/**/*.js' > doc/api.md && npm run show-protected",
"typings": "jsdoc -t node_modules/tsd-jsdoc/dist -r lib -d . && replace-in-file /declare/g export types.d.ts --isRegex",
"generate-docs": "npm run jsdoc && npm run typings",
"version": "npm run generate-docs && git add ./doc/api.md"
},
"author": "Adobe Inc.",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"repository": "adobe/aio-lib-files",
"keywords": [
"openwhisk",
"storage",
"cloud-native",
"adobe-io"
],
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@types/jest": "^29.5.2",
"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": "^5.0.0",
"jest": "^29",
"jest-junit": "^16.0.0",
"jsdoc-to-markdown": "^9.1.1",
"replace-in-file": "^8.3.0",
"tsd-jsdoc": "^2.4.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@adobe/aio-lib-core-errors": "^4",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-tvm": "^4",
"@adobe/aio-lib-env": "^3.0.0",
"@azure/storage-blob": "^12.3.0",
"@types/hapi__joi": "^17.1.13",
"fs-extra": "^11.1.1",
"joi": "^17.4.2",
"lodash.clonedeep": "^4.5.0",
"mime-types": "^2.1.24",
"node-fetch": "^2.6.0",
"upath": "^2.0.1",
"uuid": "^9.0.0",
"xml-js": "^1.6.11"
}
}