-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
69 lines (69 loc) · 2.49 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
{
"name": "@adobe/helix-rum-enhancer",
"version": "2.26.1",
"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 1.x main",
"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": "2.0.8",
"@adobe/helix-rum-js": "2.10.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@web/test-runner": "0.19.0",
"@web/test-runner-commands": "0.9.0",
"@web/test-runner-mocha": "0.9.0",
"@web/test-runner-playwright": "0.11.0",
"c8": "10.1.2",
"codecov": "3.8.3",
"eslint": "8.57.1",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.31.0",
"husky": "9.1.7",
"jsdoc-to-markdown": "9.1.1",
"junit-report-builder": "5.1.1",
"lint-staged": "15.2.10",
"mocha": "11.0.1",
"mocha-multi-reporters": "1.5.1",
"rollup": "4.28.1",
"rollup-plugin-checksum": "1.0.1",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-eslint-bundle": "9.0.0",
"semantic-release": "24.2.0",
"semantic-release-slack-bot": "^4.0.2",
"web-vitals": "4.2.4"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
}
}