* development: (71 commits) Transform input data before encoding for callAsync and getABIEncodedTransactionData Update coverage badge to show development coverage Configure post build hook Notify coveralls after all tasks have finished Address feedback Revert "Report all coverage reports together" Separate published packages and typescript typings on README Report all coverage reports together Add other statement types Properly and consistently parse ENV vars Add forgotten file Start using solidity-parser-antlr Fix the default always overriding to address Submit a TD PR Add an explanatory comment for making ranges unique Fix a typo in handling env variables Introduce TESTRPC_FIRST_ADDRESS Make BlockchainLifecycle accept only web3Wrapper Fix comments Fix deployer CHANGELOG ... # Conflicts: # README.md # packages/deployer/package.json # packages/subproviders/src/globals.d.ts # yarn.lock
67 lines
2.4 KiB
JSON
67 lines
2.4 KiB
JSON
{
|
|
"name": "@0xproject/subproviders",
|
|
"version": "0.7.0",
|
|
"main": "lib/src/index.js",
|
|
"types": "lib/src/index.d.ts",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"build:watch": "tsc -w",
|
|
"clean": "shx rm -rf lib scripts",
|
|
"build": "tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
|
|
"lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'",
|
|
"run_mocha_unit": "mocha lib/test/unit/**/*_test.js --timeout 10000 --bail --exit",
|
|
"run_mocha_integration": "mocha lib/test/integration/**/*_test.js --timeout 10000 --bail --exit",
|
|
"test": "npm run test:unit",
|
|
"test:circleci": "npm run test:unit",
|
|
"test:all": "run-s test:unit test:integration",
|
|
"test:unit": "run-s clean build run_mocha_unit",
|
|
"test:integration": "run-s clean build run_mocha_integration"
|
|
},
|
|
"dependencies": {
|
|
"@0xproject/assert": "^0.2.0",
|
|
"@0xproject/types": "^0.3.1",
|
|
"@0xproject/utils": "^0.4.1",
|
|
"@ledgerhq/hw-app-eth": "^4.3.0",
|
|
"@ledgerhq/hw-transport-u2f": "^4.3.0",
|
|
"bn.js": "^4.11.8",
|
|
"es6-promisify": "^5.0.0",
|
|
"ethereumjs-tx": "^1.3.3",
|
|
"ethereumjs-util": "^5.1.1",
|
|
"ganache-core": "0xProject/ganache-core",
|
|
"hdkey": "^0.7.1",
|
|
"lodash": "^4.17.4",
|
|
"semaphore-async-await": "^1.5.1",
|
|
"web3": "^0.20.0",
|
|
"web3-provider-engine": "^13.0.1",
|
|
"web3-typescript-typings": "^0.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@0xproject/monorepo-scripts": "^0.1.12",
|
|
"@0xproject/tslint-config": "^0.4.10",
|
|
"@0xproject/utils": "^0.4.1",
|
|
"@types/lodash": "^4.14.86",
|
|
"@types/mocha": "^2.2.42",
|
|
"@types/node": "^8.0.53",
|
|
"chai": "^4.0.1",
|
|
"chai-as-promised": "^7.1.0",
|
|
"chai-as-promised-typescript-typings": "^0.0.10",
|
|
"chai-typescript-typings": "^0.0.4",
|
|
"copyfiles": "^1.2.0",
|
|
"dirty-chai": "^2.0.1",
|
|
"mocha": "^4.0.1",
|
|
"npm-run-all": "^4.1.2",
|
|
"shx": "^0.2.2",
|
|
"tslint": "5.8.0",
|
|
"types-bn": "^0.0.1",
|
|
"types-ethereumjs-util": "0xProject/types-ethereumjs-util",
|
|
"typescript": "2.7.1",
|
|
"webpack": "^3.1.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"@ledgerhq/hw-transport-node-hid": "^4.3.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|