-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 934 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
31
32
33
34
35
36
37
{
"name": "ezstake",
"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/ezstake.cpp",
"build:prod": "cd contract; cdt-cpp -I include src/ezstake.cpp",
"test": "mocha -s 250 -r ts-node/register tests/**/*.spec.ts"
},
"keywords": [
"atomicassets",
"contract",
"nft",
"smart",
"staking"
],
"author": {
"name": "Benjie",
"email": "benjiewheeler@protonmail.com",
"url": "https://github.com/benjiewheeler"
},
"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"
}
}