You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
605 B
27 lines
605 B
3 years ago
|
{
|
||
|
"name": "tonstarter-contracts",
|
||
|
"description": "",
|
||
|
"version": "0.0.0",
|
||
|
"license": "MIT",
|
||
|
"author": "",
|
||
|
"scripts": {
|
||
|
"prettier": "npx prettier --write '{test,contracts}/**/*.{ts,js,json}'",
|
||
|
"build": "cd build && ./build.sh",
|
||
|
"test": "mocha test/**/*.spec.ts"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/chai": "^4.3.0",
|
||
|
"@types/mocha": "^9.0.0",
|
||
|
"chai": "^4.3.4",
|
||
|
"mocha": "^9.1.3",
|
||
|
"prettier": "^2.6.2",
|
||
|
"ts-node": "^10.4.0",
|
||
|
"typescript": "^4.5.4"
|
||
|
},
|
||
|
"prettier": {
|
||
|
"printWidth": 180
|
||
|
},
|
||
|
"mocha": {
|
||
|
"require": ["chai", "ts-node/register"]
|
||
|
}
|
||
|
}
|