-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
21 lines (21 loc) · 921 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "zswap-contracts",
"version": "1.0.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"deploy": "./deploy.sh",
"build": "./build.sh",
"update": "./scripts/update3.sh",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "echo no unit test",
"test:integration": "npm run build && cargo test --package zswap-integration-tests -- --nocapture",
"test:integration:swap": "npm run build && cargo test --package zswap-integration-tests --test swap -- --nocapture",
"test:integration:mint": "npm run build && cargo test --package zswap-integration-tests --test mint -- --nocapture",
"test:integration:burn": "npm run build && cargo test --package zswap-integration-tests --test burn -- --nocapture",
"postinstall": "echo no frontend && echo rs tests && echo rs contract"
},
"devDependencies": {
"near-cli": "^3.3.0"
},
"dependencies": {}
}