Merge branch 'master' into solc-0.7
Showing
.circleci/config.yml
deleted
100644 → 0
.github/workflows/test.yml
0 → 100644
buidler.config.js
0 → 100644
buidler/env-contract.js
0 → 100644
contracts/access/TimelockController.sol
0 → 100644
docs/modules/ROOT/pages/upgradeable.adoc
0 → 100644
| { | { | ||
| "name": "openzeppelin-solidity", | "name": "openzeppelin-solidity", | ||
| "version": "3.2.2-solc-0.7", | |||
| "description": "Secure Smart Contract library for Solidity", | "description": "Secure Smart Contract library for Solidity", | ||
| "version": "3.2.2-solc-0.7", | |||
| "files": [ | "files": [ | ||
| "/contracts/**/*.sol", | "/contracts/**/*.sol", | ||
| "/build/contracts/*.json", | "/build/contracts/*.json", | ||
| "!/contracts/mocks", | "!/contracts/mocks", | ||
| "!/contracts/examples", | |||
| "/test/behaviors" | "/test/behaviors" | ||
| ], | ], | ||
| "scripts": { | "scripts": { | ||
| "compile": "scripts/compile.sh", | "compile": "buidler compile", | ||
| "coverage": "scripts/coverage.sh", | "coverage": "buidler coverage", | ||
| "docs": "oz-docs", | "docs": "oz-docs", | ||
| "docs:watch": "npm run docs watch contracts 'docs/*.hbs'", | "docs:watch": "npm run docs watch contracts 'docs/*.hbs'", | ||
| "prepare-docs": "scripts/prepare-docs.sh", | "prepare-docs": "scripts/prepare-docs.sh", | ||
| ... | @@ -20,12 +19,12 @@ | ... | @@ -20,12 +19,12 @@ |
| "lint:js": "eslint --ignore-path .gitignore .", | "lint:js": "eslint --ignore-path .gitignore .", | ||
| "lint:js:fix": "eslint --ignore-path .gitignore . --fix", | "lint:js:fix": "eslint --ignore-path .gitignore . --fix", | ||
| "lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"", | "lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"", | ||
| "prepublish": "rimraf build contracts/build", | "prepublish": "rimraf build contracts/build artifacts cache", | ||
| "prepare": "npm run compile", | "prepare": "npm run compile", | ||
| "prepack": "node scripts/remove-ignored-artifacts.js", | "prepack": "scripts/prepack.sh", | ||
| "release": "scripts/release/release.sh", | "release": "scripts/release/release.sh", | ||
| "version": "scripts/release/version.sh", | "version": "scripts/release/version.sh", | ||
| "test": "mocha --exit --recursive" | "test": "buidler test" | ||
| }, | }, | ||
| "repository": { | "repository": { | ||
| "type": "git", | "type": "git", | ||
| ... | @@ -46,12 +45,13 @@ | ... | @@ -46,12 +45,13 @@ |
| }, | }, | ||
| "homepage": "https://openzeppelin.com/contracts/", | "homepage": "https://openzeppelin.com/contracts/", | ||
| "devDependencies": { | "devDependencies": { | ||
| "@openzeppelin/cli": "^2.8.2", | "@nomiclabs/buidler": "^1.4.8", | ||
| "@nomiclabs/buidler-truffle5": "^1.3.4", | |||
| "@nomiclabs/buidler-web3": "^1.3.4", | |||
| "@openzeppelin/docs-utils": "^0.1.0", | "@openzeppelin/docs-utils": "^0.1.0", | ||
| "@openzeppelin/gsn-helpers": "^0.2.3", | "@openzeppelin/gsn-helpers": "^0.2.3", | ||
| "@openzeppelin/gsn-provider": "^0.1.10", | "@openzeppelin/gsn-provider": "^0.1.10", | ||
| "@openzeppelin/test-environment": "^0.1.4", | "@openzeppelin/test-helpers": "^0.5.9", | ||
| "@openzeppelin/test-helpers": "^0.5.6", | |||
| "chai": "^4.2.0", | "chai": "^4.2.0", | ||
| "eslint": "^6.5.1", | "eslint": "^6.5.1", | ||
| "eslint-config-standard": "^14.1.1", | "eslint-config-standard": "^14.1.1", | ||
| ... | @@ -60,15 +60,14 @@ | ... | @@ -60,15 +60,14 @@ |
| "eslint-plugin-node": "^10.0.0", | "eslint-plugin-node": "^10.0.0", | ||
| "eslint-plugin-promise": "^4.2.1", | "eslint-plugin-promise": "^4.2.1", | ||
| "eslint-plugin-standard": "^4.0.1", | "eslint-plugin-standard": "^4.0.1", | ||
| "ethereumjs-util": "^7.0.1", | "ethereumjs-util": "^7.0.7", | ||
| "ganache-core-coverage": "https://github.com/OpenZeppelin/ganache-core-coverage/releases/download/2.5.3-coverage/ganache-core-coverage-2.5.3.tgz", | |||
| "lodash.startcase": "^4.4.0", | "lodash.startcase": "^4.4.0", | ||
| "lodash.zip": "^4.2.0", | "lodash.zip": "^4.2.0", | ||
| "micromatch": "^4.0.2", | "micromatch": "^4.0.2", | ||
| "mocha": "^8.0.1", | "mocha": "^8.0.1", | ||
| "rimraf": "^3.0.2", | "rimraf": "^3.0.2", | ||
| "solhint": "^3.2.0", | "solhint": "^3.2.0", | ||
| "solidity-coverage": "github:rotcivegaf/solidity-coverage#5875f5b7bc74d447f3312c9c0e9fc7814b482477", | "solidity-coverage": "^0.7.11", | ||
| "solidity-docgen": "^0.5.3" | "solidity-docgen": "^0.5.3" | ||
| }, | }, | ||
| "dependencies": {} | "dependencies": {} | ||
| ... | ... |
scripts/compile.sh
deleted
100755 → 0
scripts/coverage.sh
deleted
100755 → 0
scripts/prepack.sh
0 → 100755
scripts/prepare-contracts-package.sh
100644 → 100755
File mode changed from 100644 to 100755
scripts/prepare-docs-solc.js
0 → 100644
test-environment.config.js
deleted
100644 → 0
test/access/TimelockController.test.js
0 → 100644
test/helpers/set-gsn-provider.js
0 → 100644
Please
register
or
sign in
to comment