forked from polywrap/wrap-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 935 Bytes
/
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
{
"name": "root",
"license": "MIT",
"private": true,
"workspaces": {
"packages": [
"./packages/*",
"./demos/simple-storage/*"
],
"nohoist": [
"**/graph-ts",
"**/graph-cli",
"**/@testing-library/*",
"**/@types/testing-library*"
]
},
"scripts": {
"build": "yarn build:wasm-ts && yarn build:client-js && yarn build:cli",
"build:cli": "yarn workspace @web3api/cli build",
"build:client-js": "yarn workspace @web3api/client-js build",
"build:wasm-ts": "yarn workspace @web3api/wasm-ts build",
"test": "yarn test:wasm-ts && yarn test:client-js",
"test:wasm-ts": "yarn workspace @web3api/wasm-ts test",
"test:client-js": "yarn workspace @web3api/client-js test",
"test:ci": "yarn test:wasm-ts && yarn test:ci:client-js",
"test:ci:client-js": "yarn workspace @web3api/client-js test:ci"
},
"devDependencies": {
"lerna": "3.22.1"
}
}