-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.39 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.39 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
{
"name": "faintly",
"version": "1.2.0",
"description": "HTML Markup Transformation Library for AEM Blocks",
"main": "src/index.js",
"scripts": {
"test": "web-test-runner --node-resolve --coverage --group unit",
"test:watch": "web-test-runner --node-resolve --coverage --watch --group unit",
"test:file": "web-test-runner --node-resolve --config wtr-single.config.mjs --files",
"test:perf": "web-test-runner --node-resolve --group perf",
"test:perf:watch": "web-test-runner --node-resolve --watch --group perf",
"lint": "eslint . --ext .js,.mjs",
"lint:fix": "eslint . --ext .js,.mjs --fix",
"build": "node scripts/build.mjs",
"build:strict": "node scripts/build.mjs --strict",
"build:watch": "node scripts/build.mjs --watch",
"check:size": "node scripts/build.mjs --check-size",
"check:size:strict": "node scripts/build.mjs --check-size --strict",
"clean": "rm -rf dist",
"verify": "npm run clean && npm run build:strict && npm run lint && npm test"
},
"author": "Sean Steimer",
"license": "Apache-2.0",
"devDependencies": {
"@babel/eslint-parser": "7.28.5",
"@esm-bundle/chai": "4.3.4-fix.0",
"@web/test-runner": "0.20.2",
"@web/test-runner-commands": "0.9.0",
"@web/test-runner-mocha": "0.9.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"esbuild": "0.25.11"
}
}