50 lines
2.1 KiB
JSON
50 lines
2.1 KiB
JSON
{
|
|
"name": "@0xproject/fill-scenarios",
|
|
"version": "0.0.1",
|
|
"description": "0x order fill scenario generator",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"scripts": {
|
|
"watch": "tsc -w",
|
|
"prebuild": "run-s clean generate_contract_wrappers",
|
|
"generate_contract_wrappers": "node ../abi-gen/lib/index.js --abis 'src/compact_artifacts/@(Exchange|Token|TokenTransferProxy|EtherToken|DummyToken).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'",
|
|
"build": "tsc && copyfiles -u 2 './src/compact_artifacts/**/*.json' ./lib/compact_artifacts && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
|
|
"clean": "shx rm -rf lib scripts src/generated_contract_wrappers",
|
|
"lint": "tslint --project .",
|
|
"manual:postpublish": "yarn build; node ./scripts/postpublish.js"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/0xProject/0x-monorepo.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/0xProject/0x-monorepo/issues"
|
|
},
|
|
"homepage": "https://github.com/0xProject/0x-monorepo/packages/fill-scenarios/README.md",
|
|
"devDependencies": {
|
|
"@0xproject/monorepo-scripts": "^0.1.19",
|
|
"@0xproject/sol-compiler": "^0.4.3",
|
|
"@0xproject/tslint-config": "^0.4.17",
|
|
"@types/lodash": "4.14.104",
|
|
"copyfiles": "^1.2.0",
|
|
"npm-run-all": "^4.1.2",
|
|
"shx": "^0.2.2",
|
|
"tslint": "5.8.0",
|
|
"typescript": "2.7.1"
|
|
},
|
|
"dependencies": {
|
|
"@0xproject/base-contract": "^0.3.1",
|
|
"@0xproject/order-utils": "^0.0.4",
|
|
"@0xproject/types": "^0.6.3",
|
|
"@0xproject/typescript-typings": "^0.3.1",
|
|
"@0xproject/utils": "^0.6.1",
|
|
"@0xproject/web3-wrapper": "^0.6.3",
|
|
"ethers": "^3.0.15",
|
|
"lodash": "^4.17.4"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|