forked from Sweat-Foundation/sweat-claim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 684 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "sweat-claim",
"version": "1.0.0",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"deploy": "cd contract && ./deploy.sh",
"build": "npm run build:contract",
"build:contract": "cd contract && ./build.sh",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "cd contract && cargo test",
"test:integration": "npm run build:contract && cd integration-tests && cargo run --example integration-tests \"../contract/target/wasm32-unknown-unknown/release/sweat_claim.wasm\"",
"postinstall": "echo no frontend && echo rs tests && echo rs contract"
},
"devDependencies": {
"near-cli": "^3.3.0"
},
"dependencies": {}
}