diff --git a/README.md b/README.md index 15ba3c4..351ebee 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,5 @@ its selector. This contract can work instead of, or along side the OpenZeppelin Pausable.sol contract. This contract is in development and should only be used after performing independent testing. + +Install with: `npm i selective-pausable` diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..02b8d98 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,13 @@ +{ + "name": "selective-pausable", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "selective-pausable", + "version": "1.0.0", + "license": "ISC" + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..bed077b --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "selective-pausable", + "version": "1.0.0", + "description": "An expansion on OpenZeppelin's Pausable.sol. This contract adds the ability to pause each function by its selector.", + "main": "index.js", + "directories": { + "lib": "lib", + "test": "test" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/uintgroup/selective-pausable.git" + }, + "keywords": [ + "solidity", + "ethereum", + "evm", + "smart", + "contract", + "pausable", + "openzeppelin" + ], + "author": "uintgroup", + "license": "ISC", + "bugs": { + "url": "https://github.com/uintgroup/selective-pausable/issues" + }, + "homepage": "https://github.com/uintgroup/selective-pausable#readme" +} \ No newline at end of file