diff --git a/.gitignore b/.gitignore index a199cbe..aa59eb2 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,10 @@ ENV/ # Coverage tests .coverage .cache/ +coverage/ +coverageEnv/ +coverage.json +# node +node_modules/ +npm-debug.log diff --git a/package.json b/package.json new file mode 100644 index 0000000..5ec8ab1 --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "status-contracts", + "version": "1.0.0", + "scripts": { + "solidity-coverage": "./node_modules/.bin/solidity-coverage" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/status-im/contracts.git" + }, + "author": "", + "license": "ISC", + "bugs": { + "url": "https://github.com/status-im/contracts/issues" + }, + "homepage": "https://github.com/status-im/contracts#readme", + "devDependencies": { + "solidity-coverage": "^0.4.4" + } +}