-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
{
"name": "@adobe/helix-deploy-plugin-webpack",
"version": "1.0.18",
"description": "Helix Deploy - Plugin for Webpack",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "c8 mocha -i -g Integration --spec=test/**/*.test.js",
"lint": "eslint .",
"semantic-release": "semantic-release",
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-deploy-plugin-webpack.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-deploy-plugin-webpack/issues"
},
"homepage": "https://github.com/adobe/helix-deploy-plugin-webpack#readme",
"mocha": {
"require": "test/setup-env.js",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"devDependencies": {
"@adobe/eslint-config-helix": "3.0.21",
"@eslint/config-helpers": "0.5.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.4",
"c8": "10.1.3",
"eslint": "9.4.0",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"mocha": "11.7.5",
"mocha-multi-reporters": "1.5.1",
"semantic-release": "25.0.3",
"yauzl": "3.2.1"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
},
"peerDependencies": {
"@adobe/helix-deploy": "^13.0.0",
"@adobe/helix-universal": ">=4.1.1"
},
"dependencies": {
"chalk-template": "1.1.2",
"fs-extra": "11.3.3",
"webpack": "5.105.2"
}
}