-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.68 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
{
"name": "search_and_replace",
"version": "3.0.0",
"resolutions": {
"author": "Chris Taylor <cjtaylor38@gmail.com>"
},
"module": "true",
"scripts": {
"watch": "node scripts/build.mjs --dev --watch",
"build": "node scripts/build.mjs",
"build:dev": "node scripts/build.mjs --dev",
"release": "npm run build && mkdir -p releases && cd dist && zip -qr ../releases/search_and_replace_$npm_package_version.zip .",
"screenshots": "node scripts/screenshots.mjs",
"start": "light-server --no-reload -s . -p 9000 -w \"**/*.html,**/*.css,**/*.js,**/*.gz\"",
"typecheck": "tsc --noEmit && tsc --noEmit --project tsconfig.test.json && tsc --noEmit --project src/cypress/tsconfig.json",
"lint": "eslint 'src/**/*.ts' 'scripts/*.mjs'",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"checks": "npm run typecheck && npm run lint && npm run format:check && npm run test && npm run build",
"cypress:open": "npx cypress open --project src",
"cypress:run": "npx cypress run --project src",
"test:e2e": "npm run cypress:run",
"test:e2e:wordpress": "npx cypress run --project src --spec 'src/cypress/e2e/wordpress.cy.ts' --config excludeSpecPattern=[]",
"e2e:docker:down": "docker compose --file ./docker/docker-compose.wordpress.yml down --volumes --remove-orphans",
"e2e:docker:up": "docker compose --file ./docker/docker-compose.wordpress.yml up -d"
},
"devDependencies": {
"@eslint/eslintrc": "^2.0.3",
"@html-eslint/eslint-plugin": "^0.22.0",
"@html-eslint/parser": "^0.22.0",
"@types/chrome": "*",
"@types/node": "^24.13.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^5.0.1",
"cypress": "^13.6.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-absolute-imports-only": "^1.0.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"glob": "^7.1.6",
"jsdom": "^30.1.0",
"light-server": "^2.9.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2 ",
"terser": "^5.51.2",
"typescript": "^5.9.3",
"vite": "^8.3.0",
"vitest": "^5.0.1",
"wait-on": "^9.1.0"
},
"engines": {
"node": ">=22"
}
}