-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
105 lines (105 loc) · 3.57 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
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
97
98
99
100
101
102
103
104
105
{
"name": "@adobe/aem-angular-editable-components",
"version": "1.0.5",
"description": "Provides Angular components and integration layer with Adobe Experience Manager Page Editor.",
"keywords": [
"spa",
"aem",
"angular",
"adobe"
],
"author": "Adobe Systems Inc. <sitexpci@adobe.com>",
"license": "Apache-2.0",
"repository": "github:adobe/aem-angular-editable-components",
"homepage": "https://docs.adobe.com/content/help/en/experience-manager-65/developing/headless/spas/spa-reference-materials.html",
"bugs": {
"url": "https://github.com/adobe/aem-angular-editable-components/issues"
},
"engines": {
"npm": ">=8.14.0",
"node": ">=16.14.2"
},
"scripts": {
"build": "ng build aem-angular-editable-components --configuration production",
"build:dev": "npm run test && ng build aem-angular-editable-components",
"clean": "rm -rf dist/",
"docs": "npm i && npx typedoc --excludePrivate ./src --out ./dist/docs --exclude '**/test/**/*' --exclude '**/*.spec.ts' --exclude src/test.ts",
"e2e": "ng e2e",
"ng": "ng",
"semantic-release": "semantic-release",
"start": "ng serve",
"test:coverage": "ng test aem-angular-editable-components --code-coverage",
"test:debug": "ng test aem-angular-editable-components --watch=true --code-coverage",
"test": "ng test aem-angular-editable-components"
},
"peerDependencies": {
"@adobe/aem-spa-component-mapping": "~1.1.0",
"@adobe/aem-spa-page-model-manager": "~1.5.0"
},
"devDependencies": {
"@adobe/aem-spa-component-mapping": "~1.1.0",
"@adobe/aem-spa-page-model-manager": "~1.5.0",
"@adobe/eslint-config-editorxp": "^1.0.7",
"@angular-devkit/build-angular": "^13.3.11",
"@angular-eslint/eslint-plugin": "^0.5.0-beta.3",
"@angular/cli": "^13.3.11",
"@angular/common": "^13.4.0",
"@angular/compiler": "^13.4.0",
"@angular/compiler-cli": "^13.4.0",
"@angular/core": "^13.4.0",
"@angular/forms": "^13.4.0",
"@angular/language-service": "^13.4.0",
"@angular/localize": "^13.4.0",
"@angular/platform-browser": "^13.4.0",
"@angular/platform-browser-dynamic": "^13.4.0",
"@angular/router": "^13.4.0",
"@ngtools/webpack": "^13.3.11",
"@octokit/core": "^3.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.7",
"@types/jasmine": "^3.5.10",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^14.0.11",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"codelyzer": "^6.0.2",
"commitizen": "^4.2.1",
"core-js": "^3.23.3",
"cosmiconfig": "^7.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-plugin-angular": "^4.0.1",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-json": "^2.1.2",
"jasmine": "^5.0.0",
"jasmine-core": "^5.0.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^13.3.1",
"protractor": "^7.0.0",
"rxjs": "^6.5.5",
"sass": "^1.63.3",
"semantic-release": "^17.1.1",
"ts-node": "^10.0.0",
"tslib": "^2.5.3",
"typedoc": "^0.22.15",
"typescript": "^4.6.4",
"zone.js": "~0.11.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"root": true,
"extends": [
"@adobe/eslint-config-editorxp/angular"
]
}
}