-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.92 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.92 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
{
"name": "vanityURLs",
"version": "3.3.0",
"type": "module",
"private": true,
"scripts": {
"build": "node scripts/build.mjs",
"build:links": "node scripts/build.mjs",
"clean": "node scripts/clean.mjs",
"convert:lnk": "node scripts/convert-lnk.mjs",
"detach": "node scripts/detach-instance.mjs",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"doctor": "node scripts/doctor.mjs",
"format": "prettier --write \"**/*.{css,html,js,json,md,mjs,yaml,yml}\" \"!CHANGELOG.md\"",
"format:check": "prettier --check \"**/*.{css,html,js,json,md,mjs,yaml,yml}\" \"!CHANGELOG.md\"",
"generate": "npm run generate:manifest",
"generate:blocklist": "node scripts/generate-blocklist.mjs build/blocklist.generated.json",
"generate:manifest": "node scripts/generate-release-manifest.mjs",
"help": "node scripts/help.mjs",
"lint": "npm run lint:hygiene && npm run lint:complexity",
"lint:complexity": "node scripts/complexity-report.mjs",
"lint:complexity:raw": "eslint .",
"lint:hygiene": "node scripts/lint.mjs",
"local-install": "node scripts/local-install.mjs",
"local-publish": "node scripts/local-publish.mjs",
"optimize:badges": "find defaults/public -name 'v8s-redirected*.svg' -print0 | xargs -0 svgo --config scripts/svgo.config.mjs",
"setup": "node scripts/setup.mjs",
"smoke": "npm run smoke:analytics",
"smoke:analytics": "npm run build && node scripts/smoke-analytics.mjs",
"test": "npm run test:all",
"test:all": "npm run test:worker && npm run test:registry && npm run test:install && npm run test:install-core && npm run test:maintenance && npm run test:upstream-release && npm run test:build-core && npm run test:build-html-core",
"test:build-core": "node scripts/build-site-core.test.mjs",
"test:build-html-core": "node scripts/build-html-core.test.mjs",
"test:install": "node scripts/install.test.mjs",
"test:install-core": "node scripts/install-core.test.mjs",
"test:maintenance": "node scripts/maintenance.test.mjs",
"test:registry": "node scripts/registry.test.mjs",
"test:upstream-release": "node scripts/upstream-release.test.mjs",
"test:worker": "node scripts/workers/worker.test.mjs",
"upgrade": "node scripts/upgrade.mjs",
"update": "node scripts/upgrade.mjs",
"validate": "npm run validate:all",
"validate:all": "npm run validate:registry",
"validate:registry": "node scripts/validate-registry.mjs build/v8s.json",
"validate:targets": "node scripts/check-targets.mjs build/v8s.json",
"check:links": "npm run build && npm run lint && npm run test:registry",
"check": "npm run check:all",
"check:all": "npm run format:check && npm run build && npm run lint && npm run test",
"check:targets": "npm run validate:targets",
"ci:check": "npm run check"
},
"devDependencies": {
"eslint": "^10.4.1",
"eslint-plugin-sonarjs": "^4.0.3",
"prettier": "^3.8.3",
"svgo": "^4.0.1"
}
}