-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@adobe/aem-assets-details-ext-tpl",
"version": "0.0.7",
"main": "src/index.js",
"description": "Asset Details extension template for the AEM Assets View",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"ecosystem:aio-app-builder-templates"
],
"author": "Adobe Inc.",
"license": "Apache-2.0",
"dependencies": {
"@adobe/generator-app-common-lib": "^2.0.0",
"chalk": "^4.0.0",
"fs-extra": "^11.0.0",
"slugify": "^1.6.5",
"yeoman-generator": "^5"
},
"devDependencies": {
"jest": "^29.0.0",
"stdout-stderr": "^0.1.13",
"yeoman-test": "^6.3.0",
"js-yaml": "^4.1.0",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.2.0",
"lodash.clonedeep": "^4.5.0",
"@adobe/aio-lib-template-validation": "^5.0.0"
},
"peerDependencies": {
"@adobe/aio-cli-plugin-app-templates": "^1.0.0 || ^2.0.0"
},
"scripts": {
"validate": "tv run-checks .",
"test": "npm run unit-tests && npm run validate",
"unit-tests": "jest ./test",
"e2e": "node test/e2e.js"
}
}