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.
31 lines
660 B
31 lines
660 B
{ |
|
"name": "tonstarter-contracts", |
|
"description": "", |
|
"version": "0.0.0", |
|
"license": "MIT", |
|
"author": "", |
|
"scripts": { |
|
"prettier": "npx prettier --write '{test,contracts,build}/**/*.{ts,js,json}'", |
|
"build": "ts-node ./build/build.ts", |
|
"test": "mocha test/**/*.spec.ts" |
|
}, |
|
"devDependencies": { |
|
"@types/chai": "^4.3.0", |
|
"@types/mocha": "^9.0.0", |
|
"chai": "^4.3.4", |
|
"fast-glob": "^3.2.11", |
|
"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" |
|
] |
|
} |
|
}
|
|
|