aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-doc/package.json
blob: 62cf0a9e128c31e486a4b1d607fb2af69b980641 (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
{
    "name": "@0xproject/sol-doc",
    "version": "1.0.0",
    "description": "Solidity documentation generator",
    "main": "lib/src/index.js",
    "types": "lib/src/index.d.js",
    "scripts": {
        "build": "tsc",
        "test": "mocha --require source-map-support/register --require make-promises-safe lib/test/**/*_test.js --timeout 5000 --exit",
        "lint": "tslint --project . --format stylish",
        "clean": "shx rm -rf lib"
    },
    "repository": "https://github.com/0xProject/0x-monorepo.git",
    "author": "F. Eugene Aumson",
    "license": "Apache-2.0",
    "dependencies": {
        "@0xproject/sol-compiler": "^1.0.5",
        "@0xproject/types": "^1.0.1-rc.6",
        "@0xproject/utils": "^1.0.5",
        "ethereum-types": "^1.0.4",
        "lodash": "^4.17.10"
    },
    "devDependencies": {
        "chai": "^4.1.2",
        "chai-as-promised": "^7.1.0",
        "chai-bignumber": "^2.0.2",
        "dirty-chai": "^2.0.1",
        "make-promises-safe": "^1.1.0",
        "mocha": "^5.2.0",
        "shx": "^0.2.2",
        "source-map-support": "^0.5.0",
        "tslint": "5.11.0"
    },
    "publishConfig": {
        "access": "public"
    }
}