-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
30 lines (30 loc) · 1.03 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
{
"name": "json-rpc-demo-as",
"description": "Polywrap AssemblyScript Wrapper Demo: JSON-RPC with HTTP plugin",
"private": true,
"version": "0.2.1",
"scripts": {
"build": "npx polywrap build",
"test:env:up": "npx polywrap infra up --modules=eth-ens-ipfs",
"test:env:down": "npx polywrap infra down --modules=eth-ens-ipfs",
"deploy": "npx polywrap deploy",
"test": "yarn test:e2e && yarn test:workflow",
"test:e2e": "yarn test:e2e:codegen && jest --passWithNoTests --runInBand --verbose",
"test:e2e:codegen": "npx polywrap codegen -m ./src/__tests__/types/polywrap.yaml -g ./src/__tests__/types/wrap",
"test:workflow": "npx polywrap test -m ./workflows/polywrap.test.yaml"
},
"devDependencies": {
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
"@types/prettier": "2.6.0",
"polywrap": "0.10.0",
"assemblyscript": "0.19.23",
"jest": "26.6.3",
"solc": "0.8.3",
"ts-jest": "26.5.4",
"typescript": "4.0.7"
},
"dependencies": {
"@polywrap/wasm-as": "0.10.0"
}
}