aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts-gen/package.json
blob: 1265cac694238db2b626fa14a10515eec4d08138 (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
{
    "name": "@0x/contracts-gen",
    "version": "1.0.0",
    "engines": {
        "node": ">=6.12"
    },
    "description": "Generates boilerplate code for smart contracts packages",
    "main": "lib/src/index.js",
    "types": "lib/src/index.d.ts",
    "scripts": {
        "lint": "tslint --format stylish --project .",
        "clean": "shx rm -rf lib",
        "build": "tsc -b",
        "build:ci": "yarn build"
    },
    "bin": {
        "contracts-gen": "bin/contracts-gen.js"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/0xProject/0x-monorepo.git"
    },
    "license": "Apache-2.0",
    "bugs": {
        "url": "https://github.com/0xProject/0x-monorepo/issues"
    },
    "homepage": "https://github.com/0xProject/0x-monorepo/packages/contracts-gen/README.md",
    "dependencies": {
        "@0x/types": "^2.0.1",
        "@0x/utils": "^4.0.2",
        "@0x/typescript-typings": "^4.0.0",
        "ethereum-types": "^2.0.0",
        "@0x/sol-resolver": "^2.0.1",
        "lodash": "^4.17.11",
        "prettier": "^1.16.3",
        "to-snake-case": "^1.0.0"
    },
    "devDependencies": {
        "@0x/tslint-config": "^3.0.0",
        "@types/node": "*",
        "@types/prettier": "^1.15.2",
        "shx": "^0.2.2",
        "tslint": "5.11.0",
        "typescript": "3.0.1"
    },
    "publishConfig": {
        "access": "public"
    }
}