UNPKG

synthetix

Version:

The smart contracts which make up the Synthetix system. (synthetix.io)

99 lines (98 loc) 3.07 kB
{ "name": "synthetix", "version": "2.21.13", "license": "MIT", "author": "Synthetix", "description": "The smart contracts which make up the Synthetix system. (synthetix.io)", "scripts": { "clean-install": "rm -rf build && rm ./package-lock.json && rm -rf node_modules/* && npm install", "compile:legacy": "buidler compile --config legacy/buidler.legacy.js", "compile": "npm run compile:legacy && buidler compile", "coverage": "buidler coverage --network coverage", "format": "prettier --write \"contracts/**/*.sol\" \"**/*.js\"", "lint": "solhint \"contracts/**/*.sol\" && eslint \"**/*.js\"", "lint:fix": "eslint --fix \"**/*.js\"", "slither": "pip3 install --user slither-analyzer && slither .", "test": "buidler test", "test:legacy": "npm run compile:legacy && buidler test:legacy", "test:deployments": "mocha test/deployments -- --timeout 15000", "test:etherscan": "node test/etherscan", "test:local": "concurrently --kill-others --success first \"npx buidler node > /dev/null\" \"wait-port 8545 && node test/testnet --network local --yes\"", "test:publish": "concurrently --kill-others --success first \"npx buidler node > /dev/null\" \"wait-port 8545 && mocha test/publish\"", "test:testnet": "node test/testnet" }, "repository": { "type": "git", "url": "git+https://github.com/Synthetixio/synthetix.git" }, "keywords": [ "Synthetix", "Solidity", "DeFi" ], "engines": { "node": ">=8.10.0" }, "files": [ "index.js", "bin.js", "contracts/**/*.sol", "publish/deployed/*/synths.json", "publish/deployed/*/deployment.json" ], "bin": { "snx": "bin.js" }, "main": "index.js", "bugs": { "url": "https://github.com/Synthetixio/synthetix/issues" }, "homepage": "https://synthetix.io", "directories": { "test": "test" }, "devDependencies": { "@codechecks/client": "0.1.10", "@nomiclabs/buidler": "1.3.0", "@nomiclabs/buidler-truffle5": "1.3.0", "@nomiclabs/buidler-web3": "1.3.0", "abi-decoder": "2.3.0", "axios": "^0.18.0", "bip39": "^2.5.0", "bn.js": "4.11.8", "chai": "4.2.0", "chalk": "^2.4.2", "concurrently": "4.1.0", "dotenv": "^6.1.0", "eslint": "^5.5.0", "eslint-config-prettier": "^3.6.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-havven": "^1.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-prettier": "^2.6.2", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "mkdirp": "^0.5.1", "mocha": "6.2.2", "prettier": "^1.14.2", "prettier-plugin-solidity": "~1.0.0-alpha.37", "rimraf": "^2.6.2", "seedrandom": "^2.4.4", "solc": "0.5.16", "solhint": "^2.3.0", "solidifier": "^2.0.0", "solidity-coverage": "0.7.4", "table": "^5.0.2", "typedarray-to-buffer": "^3.1.5", "wait-port": "^0.2.2", "web3": "1.2.6" }, "dependencies": { "@chainlink/contracts-0.0.3": "npm:@chainlink/contracts@0.0.3", "commander": "^2.19.0", "openzeppelin-solidity-2.3.0": "npm:openzeppelin-solidity@2.3.0", "pretty-error": "^2.1.1", "web3-utils": "1.2.2" } }