-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.01 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.01 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
{
"name": "@adobe/aio-cli-plugin-aem-edge-functions",
"description": "Adobe I/O CLI plugin for interacting with AEM Edge Functions",
"version": "0.7.0",
"author": "Adobe Inc.",
"engines": {
"npm": ">= 8.0.0",
"node": "^18 || ^20 || >=22.15 <23 || >=24.10 <25"
},
"dependencies": {
"@adobe/aio-lib-console": "5.5.0",
"@adobe/aio-lib-core-config": "5.0.1",
"@adobe/aio-lib-core-networking": "5.1.0",
"@adobe/aio-lib-ims": "8.1.1",
"@fastly/cli": "14.3.1",
"@inquirer/prompts": "8.3.0",
"@oclif/core": "2.16.0",
"chalk": "4.1.2",
"jsonwebtoken": "9.0.3",
"open": "10.2.0",
"ora-classic": "5.4.2"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "4.0.0",
"@inquirer/testing": "2.1.53",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
"eslint-plugin-prettier": "5.5.5",
"husky": "8.0.3",
"mocha": "12.0.0-beta-10",
"nyc": "15.1.0",
"prettier": "3.8.1",
"sinon": "21.0.3"
},
"bin": {
"adobe-aem-edge-functions-cli": "bin/run"
},
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aio-cli-plugin-aem-edge-functions.git"
},
"scripts": {
"test": "nyc --all --exclude 'eslint_rules/*' --exclude 'coverage/*' --exclude 'src/index.js' --exclude 'test/*' --reporter=text --reporter=html mocha 'test/**/*.test.js'",
"prepare": "husky install",
"lint": "eslint --fix --ext .js",
"lint-all": "eslint --fix --ext .js,.jsx .",
"format": "npx prettier --write '**/*.(js|jsx|yaml|md|json)' --no-error-on-unmatched-pattern"
},
"lint-staged": {
"*.{js,ts}": [
"npm run format"
],
"*.{yaml,sh,json}": [
"npm run format"
]
},
"files": [
"/src",
"/bin/run"
],
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topics": {
"aem:edge-functions": {
"description": "Interact with AEM Edge Functions."
}
}
}
}