aboutsummaryrefslogtreecommitdiffstats
path: root/packages/migrations/package.json
blob: 61dfc5de6760127c6dbc9bcaf672061a286391f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
    "name": "@0xproject/migrations",
    "version": "0.0.5",
    "engines": {
        "node": ">=6.12"
    },
    "description": "0x smart contract migrations",
    "main": "lib/index.js",
    "types": "lib/index.d.ts",
    "scripts": {
        "watch": "tsc -w",
        "prebuild": "run-s clean copy_artifacts generate_contract_wrappers",
        "copy_artifacts": "copyfiles 'artifacts/1.0.0/**/*' ./lib",
        "build": "tsc",
        "clean": "shx rm -rf lib src/contract_wrappers",
        "lint": "tslint --project .",
        "migrate": "run-s build compile script:migrate",
        "script:migrate": "node ./lib/migrate.js",
        "generate_contract_wrappers": "abi-gen --abis  ${npm_package_config_abis} --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/contract_wrappers --backend ethers && prettier --write 'src/contract_wrappers/**.ts'",
        "compile": "sol-compiler"
    },
    "config": {
        "abis":
            "artifacts/1.0.0/@(DummyERC20Token|TokenTransferProxy_v1|Exchange_v1|TokenRegistry|MultiSigWallet|MultiSigWalletWithTimeLock|MultiSigWalletWithTimeLockExceptRemoveAuthorizedAddress|TokenRegistry|ZRXToken|WETH9).json"
    },
    "license": "Apache-2.0",
    "devDependencies": {
        "@0xproject/abi-gen": "^0.2.13",
        "@0xproject/dev-utils": "^0.4.1",
        "@0xproject/tslint-config": "^0.4.17",
        "@0xproject/types": "^0.6.3",
        "make-promises-safe": "^1.1.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/sol-compiler": "^0.4.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"
    }
}