@aztec/protocol
Advanced tools
Comparing version 0.5.0 to 0.6.0
103
package.json
{ | ||
"name": "@aztec/protocol", | ||
"version": "0.5.0", | ||
"description": "AZTEC smart contract repository", | ||
"version": "0.6.0", | ||
"author": "AZTEC", | ||
"description": "AZTEC smart contract repository", | ||
"license": "LGPL-3.0", | ||
"files": [ | ||
"/contracts" | ||
], | ||
"homepage": "https://github.com/AztecProtocol/AZTEC#readme", | ||
"keywords": [ | ||
"aztec", | ||
"cryptography", | ||
"privacy", | ||
"protocol", | ||
"ethereum", | ||
"blockchain" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/AztecProtocol/AZTEC.git" | ||
}, | ||
"bugs": { | ||
@@ -27,26 +10,19 @@ "url": "https://github.com/AztecProtocol/AZTEC/issues" | ||
"dependencies": { | ||
"openzeppelin-solidity": "2.1.2" | ||
"openzeppelin-solidity": "2.2.0" | ||
}, | ||
"devDependencies": { | ||
"@0x/sol-compiler": "^3.1.3", | ||
"@0x/sol-coverage": "^3.0.0", | ||
"@0x/sol-profiler": "^3.1.2", | ||
"@0x/sol-trace": "^2.0.8", | ||
"@0x/sol-tracing-utils": "^6.0.8", | ||
"@0x/subproviders": "^4.0.2", | ||
"@aztec/dev-utils": "1.7.0", | ||
"aztec.js": "file:../aztec.js", | ||
"babel-runtime": "^6.26.0", | ||
"bluebird": "^3.5.3", | ||
"@aztec/dev-utils": "1.8.0", | ||
"aztec.js": "0.8.0", | ||
"bn.js": "^4.11.8", | ||
"braintree-jsdoc-template": "^3.3.0", | ||
"coveralls": "^3.0.2", | ||
"dotenv": "^6.2.0", | ||
"eslint": "^5.14.1", | ||
"eslint-config-airbnb": "^17.1.0", | ||
"dotenv": "^7.0.0", | ||
"eslint": "^5.15.3", | ||
"eslint-config-airbnb-base": "^13.1.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jsx-a11y": "^6.2.0", | ||
"eslint-plugin-react": "^7.12.4", | ||
"ethereumjs-util": "^6.1.0", | ||
"eslint-config-prettier": "^4.1.0", | ||
"eslint-plugin-import": "^2.16.0", | ||
"fixpack": "^2.3.1", | ||
"fs-extra": "^7.0.1", | ||
@@ -56,27 +32,48 @@ "ganache-cli": "^6.4.1", | ||
"lodash": "^4.17.11", | ||
"mocha": "^5.2.0", | ||
"rimraf": "^2.6.3", | ||
"sinon": "^7.3.1", | ||
"solc": "^0.5.6", | ||
"solhint": "1.5.0", | ||
"truffle": "^5.0.8", | ||
"truffle-assertions": "^0.8.0", | ||
"mocha": "^6.0.2", | ||
"shx": "^0.3.2", | ||
"solhint": "^2.0.0", | ||
"truffle": "5.0.10", | ||
"truffle-assertions": "^0.8.2", | ||
"truffle-hdwallet-provider": "^1.0.4", | ||
"web3": "1.0.0-beta.37", | ||
"web3-utils": "1.0.0-beta.37" | ||
"web3": "1.0.0-beta.50", | ||
"web3-utils": "1.0.0-beta.50" | ||
}, | ||
"engines": { | ||
"node": ">=8.3", | ||
"yarn": "1.15.2" | ||
}, | ||
"files": [ | ||
"/contracts" | ||
], | ||
"homepage": "https://github.com/AztecProtocol/AZTEC/tree/master/packages/protocol#readme", | ||
"keywords": [ | ||
"aztec", | ||
"blockchain", | ||
"confidentiality", | ||
"cryptography", | ||
"ethereum", | ||
"privacy", | ||
"protocol" | ||
], | ||
"license": "LGPL-3.0", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/AztecProtocol/AZTEC.git" | ||
}, | ||
"scripts": { | ||
"clean": "./node_modules/.bin/rimraf -rf ./.0x-artifacts ./.nyc-output ./build ./coverage ./coverageEnv ./coverage.json || true", | ||
"lint:js": "./node_modules/.bin/eslint --ignore-path ../../.eslintignore .", | ||
"lint:sol": "./node_modules/.bin/solhint --config ../../.solhint.json --max-warnings 0 \"contracts/**/*.sol\"", | ||
"lint": "npm run lint:js && npm run lint:sol", | ||
"test:sol": "scripts/test.sh", | ||
"test": "scripts/test.sh", | ||
"trace": "scripts/trace.sh", | ||
"clean": "shx rm -rf ./.0x-artifacts ./build ./coverage ./coverageEnv ./coverage.json || true", | ||
"compile:contracts": "truffle compile", | ||
"coverage": "scripts/coverage.sh", | ||
"deploy:kovan": "truffle migrate --network kovan", | ||
"deploy:rinkeby": "truffle migrate --network rinkeby", | ||
"deploy:ropsten": "truffle migrate --network ropsten", | ||
"lint": "yarn lint:js && yarn lint:sol", | ||
"lint:js": "eslint --ignore-path ../../.eslintignore .", | ||
"lint:sol": "solhint --ignore-path ../../.solhintignore \"contracts/**/*.sol\"", | ||
"profile": "scripts/profile.sh", | ||
"build:docs": "./node_modules/.bin/jsdoc -c ./.jsdoc.json", | ||
"compile": "./node_modules/.bin/truffle compile --all", | ||
"build:artifacts": "node scripts/artifacts.js" | ||
"test": "scripts/test.sh", | ||
"test:sol": "scripts/test.sh", | ||
"trace": "scripts/trace.sh" | ||
} | ||
} |
@@ -1,2 +0,2 @@ | ||
# Protocol | ||
## Protocol | ||
@@ -12,4 +12,4 @@ This package contains the core smart contracts of the AZTEC Protocol. The contracts are written in solidity and yul. | ||
```bash | ||
$ npm install truffle@^5.0.0 --global | ||
$ npm install ganache-cli --global | ||
$ yarn global add truffle | ||
$ yarn global add ganache-cli | ||
``` | ||
@@ -32,3 +32,3 @@ | ||
Please read our [contribution guidelines](../../CONTRIBUTING.md) before getting started. | ||
Please read our [contribution guidelines](../../.github/CONTRIBUTING.md) before getting started. | ||
@@ -38,3 +38,3 @@ ### Install Modules | ||
```bash | ||
$ npm install | ||
$ yarn install | ||
``` | ||
@@ -45,3 +45,3 @@ | ||
```bash | ||
$ npm run clean | ||
$ yarn clean | ||
``` | ||
@@ -52,3 +52,3 @@ | ||
```bash | ||
$ npm run lint | ||
$ yarn lint | ||
``` | ||
@@ -59,3 +59,3 @@ | ||
```bash | ||
$ npm run test | ||
$ yarn test | ||
``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
231976
26
+ Addedopenzeppelin-solidity@2.2.0(transitive)
- Removedopenzeppelin-solidity@2.1.2(transitive)
Updatedopenzeppelin-solidity@2.2.0