-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 902 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 902 Bytes
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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "jest",
"build": "npm run clean:types && npm run build:types",
"clean:types": "rm packages/*/src/index.d.ts packages/*/src/index.d.ts.map || true",
"build:types": "npx -p typescript tsc --allowJs --declaration --declarationMap --emitDeclarationOnly packages/*/src/index.js",
"version": "npm run build && npm test && npm version -w packages/middleware -w packages/proxy",
"publish": "npm run build && npm test && npm publish -w packages/middleware -w packages/proxy"
},
"jest": {
"collectCoverageFrom": [
"packages/{middleware,proxy}/src/**/*.js"
],
"testTimeout": 1000
},
"devDependencies": {
"google-protobuf": "^3.21.2",
"grpc-interop-server": "^0.1.0",
"grpc-web": "^1.4.2",
"jest": "^29.5.0",
"typescript": "^5.0.4",
"xhr2": "^0.2.1"
}
}