-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "@adobe/aio-cli-plugin-PLUGINNAME",
"version": "0.0.0",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4",
"@jest/globals": "^29",
"eslint": "^8",
"execa": "^8",
"jest": "^29",
"oclif": "^4",
"stdout-stderr": "^0.1.9"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin/run.js",
"oclif.manifest.json",
"src"
],
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>",
"plugins": [
"@oclif/plugin-help"
]
},
"main": "src/commands/PLUGINNAME/index.js",
"scripts": {
"lint": "eslint src test e2e",
"posttest": "npm run lint",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testRegex '.+\\.test\\.js' --ci",
"prepack": "oclif manifest && oclif readme",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme && 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",
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}