forked from adobe/helix-rum-enhancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "@adobe/helix-rum-enhancer",
"version": "1.9.1",
"description": "Helix RUM Enhancer",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "c8 mocha",
"lint": "eslint .",
"docs": "npx jsdoc2md -c .jsdoc.json --files 'src/*.js' > docs/API.md",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"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": {
"require": "test/setup-env.js",
"recursive": "true",
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.5",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "11.0.2",
"c8": "9.1.0",
"codecov": "3.8.3",
"eslint": "8.56.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "2.29.1",
"husky": "8.0.3",
"jsdoc-to-markdown": "8.0.0",
"junit-report-builder": "3.1.0",
"lint-staged": "15.2.0",
"mocha": "10.2.0",
"mocha-multi-reporters": "1.5.1",
"semantic-release": "22.0.12"
},
"lint-staged": {
"*.js": "eslint",
"*.cjs": "eslint"
}
}