-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.82 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.82 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@adobe/aio-cli-plugin-app-storage",
"version": "1.5.0",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-db": "^1.0.0",
"@adobe/aio-lib-env": "^3.0.1",
"@adobe/aio-lib-ims": "^8.0.0",
"@adobe/aio-lib-state": "^5.3.0",
"@inquirer/prompts": "^5",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"@oclif/table": "^0.5.0",
"chalk": "^5",
"dotenv": "^16.5.0",
"semver": "^7.6.3"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@jest/globals": "^29",
"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",
"execa": "^8",
"jest": "^29",
"memfs": "^4.11.1",
"oclif": "^4",
"stdout-stderr": "^0.1.9"
},
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"files": [
"bin/run.js",
"oclif.manifest.json",
"src"
],
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"topics": {
"app:state": {
"description": "Manage your App Builder State storage"
},
"app:db": {
"description": "Manage your App Builder Database storage"
},
"app:db:collection": {
"description": "Manage database collections, also available under 'aio app db col <command>'"
},
"app:db:document": {
"description": "Manage documents in a collection, also available under 'aio app db doc <command>'"
},
"app:db:index": {
"description": "Manage indexes on a collection, also available under 'aio app db idx <command>'"
}
},
"bin": "aio",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>",
"plugins": [
"@oclif/plugin-help"
],
"helpOptions": {
"hideAliasesFromRoot": true
}
},
"main": "src/commands/BaseCommand.js",
"scripts": {
"lint": "eslint src test e2e",
"unit-test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --setupFilesAfterEnv=./test/jest.setup.js --testMatch='**/*.test.js' --ci",
"test": "npm run unit-test && npm run lint",
"prepack": "oclif manifest && oclif readme --no-aliases",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme --no-aliases && git add README.md",
"e2e": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collectCoverage=false --testRegex 'e2e/e2e.js'"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"transform": {},
"setupFiles": [
"<rootDir>/test/jest.env.js"
]
}
}