-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
79 lines (79 loc) · 2.6 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
{
"name": "@adobe/helix-sidekick-extension",
"version": "6.51.1",
"description": "AEM Sidekick Extension",
"type": "module",
"scripts": {
"lint": "eslint .",
"test:mocha": "c8 mocha",
"test:mocha-ci": "c8 mocha",
"test:wtr": "wtr \"./test/unit/*.test.js\" \"./test/extension/*.test.js\" \"./test/view-doc-source/*.test.js\"",
"test:wtr:watch": "npm run test:wtr -- --watch",
"test": "npm run test:mocha && npm run test:wtr",
"test-ci": "npm run test:mocha-ci && npm run test:wtr",
"test:watch": "npm run test -- --watch",
"docs": "npx jsdoc2md -c .jsdoc.json --files './src/extension/module.js' > docs/API.md",
"semantic-release": "semantic-release",
"update-version": "node ./build/updateVersion.js",
"build": "npm run build:safari && npm run build:chrome",
"build:safari": "node ./build/build.js safari",
"build:chrome": "node ./build/build.js chrome",
"publish:chrome": "node ./build/publish.js chrome",
"release:chrome": "npm run update-version && npm run build:chrome && npm run publish:chrome",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/helix-sidekick-extension"
},
"author": "Adobe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-sidekick-extension/issues"
},
"homepage": "https://github.com/adobe/helix-sidekick-extension#readme",
"mocha": {
"require": [
"test/setup-env.js"
],
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.8",
"@adobe/fetch": "4.1.11",
"@babel/eslint-parser": "7.26.5",
"@esm-bundle/chai": "4.3.4-fix.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.0.3",
"@semantic-release/git": "10.0.1",
"@web/test-runner": "0.19.0",
"@web/test-runner-commands": "0.9.0",
"ajv": "8.17.1",
"archiver": "7.0.1",
"c8": "10.1.3",
"codecov": "3.8.3",
"eslint": "8.57.1",
"express": "4.21.2",
"fs-extra": "11.3.0",
"husky": "9.1.7",
"jsdoc-to-markdown": "9.1.1",
"lint-staged": "15.4.3",
"mime": "4.0.6",
"mocha": "11.1.0",
"mocha-multi-reporters": "1.5.1",
"nock": "13.5.6",
"puppeteer": "21.1.1",
"puppeteer-core": "21.1.1",
"puppeteer-to-istanbul": "1.4.0",
"request": "2.88.2",
"semantic-release": "24.2.1",
"semantic-release-discord-bot": "1.1.0",
"semantic-release-react-native": "1.12.1",
"shelljs": "0.8.5",
"sinon": "19.0.2"
},
"lint-staged": {
"*.js": "eslint"
}
}