forked from benjiewheeler/ezstake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
31
32
33
34
35
36
37
38
39
{
"name": "loot",
"private": true,
"version": "1.0.0",
"description": "Smart contract for customizable NFT staking using Atomicassets standard",
"scripts": {
"build:dev": "cd contract; blanc++ -I include src/loot.puma.cpp",
"build:prod": "cd contract; cdt-cpp -I include src/loot.puma.cpp",
"build:wax": "cd contract; eosio-cpp -I include src/loot.puma.cpp -abigen_output=loot.puma.abi",
"build:abi": "cd contract; eosio-abigen loot.puma.cpp --contract=loot --output=lootpumas.abi",
"test": "mocha -s 250 -r ts-node/register tests/**/*.spec.ts"
},
"keywords": [
"atomicassets",
"contract",
"nft",
"smart",
"staking"
],
"author": {
"name": "White Puma",
"email": "[email protected]",
"url": "https://github.com/elwhitepuma"
},
"devDependencies": {
"@greymass/eosio": "~0.5.5",
"@proton/vert": "^0.3.20",
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.23",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"mocha": "^10.0.0",
"proton-tsc": "^0.3.58",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}