- 0x.js@0.38.4 - @0xproject/abi-gen@0.3.2 - @0xproject/assert@0.2.12 - @0xproject/base-contract@0.3.4 - @0xproject/connect@0.6.15 - @0xproject/contract-wrappers@0.0.5 - contracts@2.1.33 - @0xproject/dev-utils@0.4.4 - @0xproject/fill-scenarios@0.0.4 - @0xproject/json-schemas@0.8.1 - @0xproject/metacoin@0.0.8 - @0xproject/migrations@0.0.8 - @0xproject/monorepo-scripts@0.2.1 - @0xproject/order-utils@0.0.7 - @0xproject/order-watcher@0.0.6 - @0xproject/react-docs-example@0.0.13 - @0xproject/react-docs@0.0.14 - @0xproject/react-shared@0.2.1 - @0xproject/sol-compiler@0.5.2 - @0xproject/sol-cov@0.1.1 - @0xproject/sol-resolver@0.0.7 - @0xproject/sra-report@0.1.4 - @0xproject/subproviders@0.10.4 - @0xproject/testnet-faucets@1.0.34 - @0xproject/tslint-config@0.4.20 - @0xproject/types@0.8.1 - @0xproject/typescript-typings@0.4.1 - @0xproject/utils@0.7.1 - @0xproject/web3-wrapper@0.7.1 - @0xproject/website@0.0.37
91 lines
3.9 KiB
JSON
91 lines
3.9 KiB
JSON
{
|
|
"name": "@0xproject/order-watcher",
|
|
"version": "0.0.6",
|
|
"description": "An order watcher daemon that watches for order validity",
|
|
"keywords": [
|
|
"0x",
|
|
"0xproject",
|
|
"ethereum",
|
|
"exchange",
|
|
"orderbook"
|
|
],
|
|
"main": "lib/src/index.js",
|
|
"types": "lib/src/index.d.ts",
|
|
"scripts": {
|
|
"watch": "tsc -w",
|
|
"prebuild": "run-s clean generate_contract_wrappers",
|
|
"generate_contract_wrappers": "abi-gen --abis 'src/compact_artifacts/@(Exchange|Token|TokenTransferProxy|EtherToken).json' --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/generated_contract_wrappers --backend ethers && prettier --write 'src/generated_contract_wrappers/**.ts'",
|
|
"lint": "tslint --project .",
|
|
"test:circleci": "run-s test:coverage",
|
|
"test": "run-s clean build run_mocha",
|
|
"test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
|
|
"coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
|
|
"update_artifacts": "for i in ${npm_package_config_contracts}; do copyfiles -u 4 ../migrations/artifacts/1.0.0/$i.json test/artifacts; done;",
|
|
"clean": "shx rm -rf _bundles lib test_temp scripts test/artifacts src/generated_contract_wrappers",
|
|
"build": "tsc && yarn update_artifacts && copyfiles -u 2 './src/compact_artifacts/**/*.json' ./lib/src/compact_artifacts && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
|
|
"run_mocha": "mocha lib/test/**/*_test.js lib/test/global_hooks.js --timeout 10000 --bail --exit",
|
|
"manual:postpublish": "yarn build; node ./scripts/postpublish.js"
|
|
},
|
|
"config": {
|
|
"compact_artifacts": "Exchange DummyToken ZRXToken Token EtherToken TokenTransferProxy TokenRegistry",
|
|
"contracts": "Exchange DummyToken ZRXToken Token WETH9 TokenTransferProxy MultiSigWallet MultiSigWalletWithTimeLock MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress MaliciousToken TokenRegistry Arbitrage EtherDelta AccountLevels"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/0xProject/0x-monorepo"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"engines": {
|
|
"node": ">=6.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@0xproject/abi-gen": "^0.3.2",
|
|
"@0xproject/dev-utils": "^0.4.4",
|
|
"@0xproject/migrations": "^0.0.8",
|
|
"@0xproject/monorepo-scripts": "^0.2.1",
|
|
"@0xproject/sol-compiler": "^0.5.2",
|
|
"@0xproject/tslint-config": "^0.4.20",
|
|
"@types/bintrees": "1.0.2",
|
|
"@types/lodash": "4.14.104",
|
|
"@types/mocha": "2.2.48",
|
|
"@types/node": "9.6.0",
|
|
"@types/sinon": "2.3.7",
|
|
"awesome-typescript-loader": "3.5.0",
|
|
"chai": "4.1.2",
|
|
"chai-as-promised": "7.1.1",
|
|
"chai-bignumber": "2.0.1",
|
|
"copyfiles": "1.2.0",
|
|
"dirty-chai": "2.0.1",
|
|
"json-loader": "0.5.7",
|
|
"make-promises-safe": "1.1.0",
|
|
"mocha": "4.1.0",
|
|
"npm-run-all": "4.1.2",
|
|
"nyc": "11.6.0",
|
|
"opn-cli": "3.1.0",
|
|
"prettier": "1.12.1",
|
|
"shx": "0.2.2",
|
|
"sinon": "4.4.9",
|
|
"source-map-support": "0.5.4",
|
|
"tslint": "5.8.0",
|
|
"typescript": "2.7.1"
|
|
},
|
|
"dependencies": {
|
|
"@0xproject/assert": "^0.2.12",
|
|
"@0xproject/base-contract": "^0.3.4",
|
|
"@0xproject/contract-wrappers": "^0.0.5",
|
|
"@0xproject/fill-scenarios": "^0.0.4",
|
|
"@0xproject/json-schemas": "^0.8.1",
|
|
"@0xproject/order-utils": "^0.0.7",
|
|
"@0xproject/types": "^0.8.1",
|
|
"@0xproject/typescript-typings": "^0.4.1",
|
|
"@0xproject/utils": "^0.7.1",
|
|
"@0xproject/web3-wrapper": "^0.7.1",
|
|
"bintrees": "1.0.2",
|
|
"ethers": "3.0.22",
|
|
"lodash": "4.17.10"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|