-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.54 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.54 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
{
"name": "@adobe/aem-boilerplate",
"private": true,
"version": "1.3.0",
"description": "Tools Site for AEM Edge Delivery Services",
"type": "module",
"scripts": {
"vendor": "node vendor/vendor.js",
"postinstall": "node vendor/vendor.js",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:css": "stylelint \"blocks/**/*.css\" \"styles/*.css\" \"tools/**/*.css\"",
"lint:css:fix": "stylelint \"blocks/**/*.css\" \"styles/*.css\" \"tools/**/*.css\" --fix",
"test": "TZ=Europe/Berlin node --test --experimental-test-coverage --experimental-test-module-mocks --test-reporter=spec --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=junit.xml --test-reporter=lcov --test-reporter-destination=lcov.info 'tests/**/*.test.js'",
"lint": "npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:js:fix && npm run lint:css:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/aem-boilerplate.git"
},
"author": "Adobe",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/adobe/aem-boilerplate/issues"
},
"homepage": "https://github.com/adobe/aem-boilerplate#readme",
"devDependencies": {
"@babel/eslint-parser": "7.28.6",
"esbuild": "0.28.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"stylelint": "17.8.0",
"stylelint-config-standard": "40.0.0"
},
"dependencies": {
"@adobe/rum-distiller": "1.23.0",
"yaml": "2.8.3"
}
}