-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 2.35 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
{
"name": "aem-packager",
"version": "3.1.5",
"description": "A node plugin to package files into a bundle installable through the AEM package manager.",
"main": "aem-packager.js",
"repository": {
"type": "git",
"url": "git+https://github.com/amclin/aem-packager.git"
},
"keywords": [
"AEM",
"packages",
"clientlibs",
"Adobe Experience Manager",
"cq5",
"jcr",
"vault",
"clientlib",
"clientlibs",
"sync",
"package",
"packager"
],
"author": "Anthony McLin",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"bugs": {
"url": "https://github.com/amclin/aem-packager/issues"
},
"homepage": "https://github.com/amclin/aem-packager#readme",
"bin": {
"aem-packager": "./aem-packager.js"
},
"scripts": {
"preinstall": "mvn -v",
"prepare": "is-ci || husky install",
"pretest": "npm run lint",
"test": "nyc mocha",
"lint": "run-p lint:*",
"lint:md": "remark .",
"lint:js": "standard"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-angular": "^17.0.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^9.0.3",
"@semantic-release/npm": "^11.0.0",
"chai": "^4.2.0",
"eslint-config-standard": "^17.0.0",
"husky": "^8.0.1",
"is-ci": "^3.0.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"remark-cli": "^11.0.0",
"remark-lint": "^9.1.0",
"remark-preset-lint-recommended": "^6.1.1",
"standard": "^17.0.0"
},
"dependencies": {
"command-line-args": "^5.1.1",
"maven": "^5.0.0",
"read-config-file": "^6.0.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"docs",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}