forked from adobe/helix-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.64 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": "@adobe/aem-cli",
"version": "16.1.6",
"description": "AEM CLI",
"main": "index.js",
"type": "module",
"bin": {
"aem": "./index.js",
"hlx": "./index.js"
},
"scripts": {
"check": "npm run lint && npm run test",
"test": "c8 mocha",
"test-ci-win": "npx mocha --reporter xunit test --reporter-options output=junit/test.xml -t 5000",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky install"
},
"mocha": {
"require": "test/setup-env.js",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json",
"loader": "esmock"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-cli.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-cli/issues"
},
"homepage": "https://github.com/adobe/helix-cli#readme",
"engines": {
"node": ">=14"
},
"dependencies": {
"@adobe/fetch": "4.1.1",
"@adobe/helix-log": "6.0.1",
"@adobe/helix-shared-config": "10.3.8",
"@adobe/helix-shared-git": "3.0.4",
"@adobe/helix-shared-indexer": "2.0.18",
"camelcase": "8.0.0",
"chalk-template": "1.1.0",
"chokidar": "3.5.3",
"compression": "1.7.4",
"cookie": "0.6.0",
"cookie-parser": "1.4.6",
"dotenv": "16.3.2",
"express": "4.18.2",
"faye-websocket": "0.11.4",
"fs-extra": "11.2.0",
"glob": "10.3.10",
"glob-to-regexp": "0.4.1",
"hast-util-select": "6.0.2",
"http-proxy-agent": "7.0.0",
"https-proxy-agent": "7.0.2",
"ignore": "5.3.0",
"ini": "4.1.1",
"isomorphic-git": "1.25.3",
"livereload-js": "4.0.2",
"node-fetch": "3.3.2",
"open": "10.0.3",
"progress": "2.0.3",
"proxy-agent": "6.3.1",
"proxy-from-env": "1.1.0",
"rehype-parse": "9.0.0",
"semver": "7.5.4",
"shelljs": "0.8.5",
"unified": "11.0.4",
"uuid": "9.0.1",
"yargs": "17.7.2"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.5",
"@adobe/helix-shared-dom": "2.0.3",
"@adobe/helix-testutils": "0.4.15",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"c8": "9.1.0",
"eslint": "8.56.0",
"esmock": "2.6.2",
"husky": "8.0.3",
"junit-report-builder": "3.1.0",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.0",
"semantic-release": "22.0.12",
"semantic-release-discord-bot": "^1.1.0",
"sinon": "17.0.1"
},
"lint-staged": {
"*.js": "eslint"
}
}