-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.22 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.22 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
{
"name": "vanityURLs",
"version": "2.2.1",
"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",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"generate:blocklist": "node scripts/generate-blocklist.mjs build/blocklist.generated.json",
"lint": "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/install.mjs",
"smoke:analytics": "npm run build && node scripts/smoke-analytics.mjs",
"test": "node scripts/workers/worker.test.mjs",
"upgrade": "node scripts/upgrade.mjs",
"update": "npm run upgrade",
"validate": "node scripts/validate-registry.mjs build/v8s.json",
"check": "node scripts/build.mjs && npm run lint && npm test",
"check:targets": "node scripts/check-targets.mjs build/v8s.json",
"ci:check": "npm run check"
},
"devDependencies": {
"svgo": "^4.0.1"
}
}