-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.87 KB
/
package.json
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
{
"private": true,
"workspaces": [
"packages/*"
],
"description": "Libraries and services that compose the web3.storage read pipeline",
"author": "Vasco Santos <santos.vasco10@gmail.com>",
"license": "Apache-2.0 OR MIT",
"scripts": {
"lint": "run-s lint:no-fix-*",
"lint:no-fix-cid-verifier": "pnpm --filter cid-verifier lint",
"lint:no-fix-denylist": "pnpm --filter denylist lint",
"lint:no-fix-edge-gateway": "pnpm --filter edge-gateway lint",
"lint:no-fix-ipfs-gateway-race": "pnpm --filter ipfs-gateway-race lint",
"lint:fix": "run-s lint:fix-*",
"lint:fix-cid-verifier": "pnpm --filter cid-verifier lint --fix",
"lint:fix-denylist": "pnpm --filter denylist lint --fix",
"lint:fix-edge-gateway": "pnpm --filter edge-gateway lint --fix",
"lint:fix-ipfs-gateway-race": "pnpm --filter ipfs-gateway-race lint --fix",
"build": "run-s build:*",
"build:cid-verifier": "pnpm --filter cid-verifier build",
"build:denylist": "pnpm --filter denylist build",
"build:edge-gateway": "pnpm --filter edge-gateway build",
"build:ipfs-gateway-race": "pnpm --filter ipfs-gateway-race build",
"test": "run-s test:*",
"test:cid-verifier": "pnpm --filter cid-verifier test",
"test:denylist": "pnpm --filter denylist test",
"test:edge-gateway": "pnpm --filter edge-gateway test",
"test:ipfs-gateway-race": "pnpm --filter ipfs-gateway-race test",
"clean": "rm -rf node_modules pnpm-lock.yml packages/*/{pnpm-lock.yml,.next,out,coverage,.nyc_output,worker,dist,node_modules}"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": "standard"
},
"devDependencies": {
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"standard": "^17.0.0",
"wrangler": "^3.78.6"
},
"engines": {
"node": ">=20"
}
}