forked from citycoins/contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
17 lines (17 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "citycoin",
"version": "1.0.1",
"description": "A smart contract implementation of the Proof of Transfer consensus mechanism, allowing for the mining and Stacking of a new fungible token on the Stacks blockchain with a portion of miner rewards going to a custodied account for a city to claim the protocol contribution.",
"scripts": {
"test": "npm run clarinet:test",
"test:token": "npm run clarinet:prepare && clarinet test ./tests/citycoin-token.test.ts",
"test:core": "npm run clarinet:prepare && clarinet test ./tests/citycoin-core-v1.test.ts",
"test:auth": "npm run clarinet:prepare && clarinet test ./tests/citycoin-auth.test.ts",
"clarinet:check": "npm run clarinet:prepare && clarinet check",
"clarinet:test": "npm run clarinet:prepare && clarinet test",
"clarinet:codecov": "npm run clarinet:prepare && clarinet test --coverage",
"clarinet:console": "npm run clarinet:prepare && clarinet console",
"clarinet:prepare": "./scripts/clarinet-prepare.sh",
"console": "npm run clarinet:console"
}
}