-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 967 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
{
"name": "erc20",
"description": "ERC20 Wrapper",
"private": true,
"version": "1.0.0",
"scripts": {
"codegen": "npx polywrap codegen",
"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",
"test:e2e": "yarn test:e2e:codegen && jest --passWithNoTests --runInBand --verbose",
"test:e2e:codegen": "npx polywrap codegen -m ./src/__tests__/types/polywrap.app.yaml -g ./src/__tests__/types/wrap",
"test:workflow:mock": "echo not implemented",
"test:workflow": "echo not implemented"
},
"devDependencies": {
"@types/jest": "27.0.3",
"jest": "26.6.3",
"nock": "13.0.7",
"polywrap": "0.12.0",
"ts-jest": "26.5.4",
"typescript": "4.0.7"
},
"dependencies": {
"@polywrap/wasm-as": "^0.12.0",
"as-container": "^0.8.0"
}
}