-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.63 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@adobe/helix-rum-enhancer",
"version": "2.50.0",
"description": "Helix RUM Enhancer",
"main": "src/index.js",
"type": "module",
"scripts": {
"setup-playwright": "npx playwright install --with-deps chromium firefox webkit",
"test": "npm run build-bundle && npm run setup-playwright && web-test-runner --node-resolve --coverage --playwright --browsers chromium firefox webkit",
"test:ci": "npm run build-bundle && npm run setup-playwright && web-test-runner --node-resolve --coverage --playwright --browsers chromium firefox webkit",
"test:watch": "npm run build-bundle && npm run setup-playwright && web-test-runner --node-resolve --playwright --coverage --watch",
"lint": "eslint .",
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
"build-bundle": "rollup --config",
"prepack": "npm run build-bundle",
"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-rum-enhancer"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/helix-rum-enhancer/issues"
},
"homepage": "https://github.com/adobe/helix-rum-enhancer#readme",
"mocha": {
"recursive": true,
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"devDependencies": {
"@adobe/eslint-config-helix": "3.0.29",
"@adobe/helix-rum-js": "2.15.3",
"@adobe/rollup-plugin-checksum": "1.2.0",
"@eslint/config-helpers": "0.6.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@rollup/plugin-babel": "7.1.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "13.1.5",
"@web/test-runner": "0.20.2",
"@web/test-runner-commands": "0.9.0",
"@web/test-runner-junit-reporter": "0.8.0",
"@web/test-runner-mocha": "0.9.0",
"@web/test-runner-playwright": "0.11.1",
"c8": "11.0.0",
"codecov": "3.8.3",
"eslint": "9.30.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.32.0",
"globals": "17.7.0",
"husky": "9.1.7",
"jsdoc-to-markdown": "9.1.3",
"junit-report-builder": "5.1.2",
"lint-staged": "16.4.0",
"mocha": "11.7.6",
"mocha-multi-reporters": "1.5.1",
"rollup": "4.62.2",
"rollup-plugin-eslint-bundle": "9.0.0",
"semantic-release": "25.0.8",
"semantic-release-slack-bot": "^4.0.2",
"web-vitals": "5.3.0"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
}
}