forked from web-std/io
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
44 lines (44 loc) · 1.46 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
{
"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",
"precommit": "lint-staged",
"format": "prettier --write --ignore-path .gitignore --ignore-unknown ./"
},
"dependencies": {
"@changesets/changelog-github": "0.4.4",
"@changesets/cli": "^2.22.0",
"@manypkg/cli": "0.19.1",
"@manypkg/get-packages": "^1.1.3",
"@types/prettier": "2.7.2",
"prettier": "^2.3.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}