forked from web-std/io
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
34 lines (34 loc) · 1.21 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
{
"name": "@remix-run/web-std-io",
"private": true,
"workspaces": [
"packages/blob",
"packages/file",
"packages/form-data",
"packages/fetch",
"packages/stream"
],
"scripts": {
"changeset": "changeset",
"release": "changeset publish",
"version-bump": "changeset version",
"postinstall": "manypkg fix",
"prepare": "yarn prepare:blob && yarn prepare:file && yarn prepare:form-data && yarn prepare:fetch",
"prepare:blob": "yarn --cwd packages/blob prepare",
"prepare:file": "yarn --cwd packages/file prepare",
"prepare:form-data": "yarn --cwd packages/form-data prepare",
"prepare:fetch": "yarn --cwd packages/fetch prepare",
"test": "yarn test:stream && yarn test:blob && yarn test:file && yarn test:form-data && yarn test:fetch",
"test:blob": "yarn --cwd packages/blob test",
"test:file": "yarn --cwd packages/file test",
"test:form-data": "yarn --cwd packages/form-data test",
"test:fetch": "yarn --cwd packages/fetch test",
"test:stream": "yarn --cwd packages/stream test"
},
"dependencies": {
"@changesets/changelog-github": "0.4.4",
"@changesets/cli": "^2.22.0",
"@manypkg/cli": "0.19.1",
"@manypkg/get-packages": "^1.1.3"
}
}