aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders/package.json
blob: 9381689b14a796ec54b46a1141194f9b164de625 (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
51
52
53
54
55
{
    "name": "@0xproject/subproviders",
    "version": "0.3.4",
    "main": "lib/src/index.js",
    "types": "lib/src/index.d.ts",
    "license": "Apache-2.0",
    "scripts": {
        "clean": "shx rm -rf lib",
        "build": "tsc",
        "lint": "tslint --project . 'src/**/*.ts' 'test/**/*.ts'",
        "run_mocha_unit": "mocha lib/test/unit/**/*_test.js --timeout 10000 --bail --exit",
        "run_mocha_integration": "mocha lib/test/integration/**/*_test.js --timeout 10000 --bail --exit",
        "test": "npm run test:unit",
        "test:circleci": "npm run test:unit",
        "test:all": "run-s test:unit test:integration",
        "test:unit": "run-s clean build run_mocha_unit",
        "test:integration": "run-s clean build run_mocha_integration"
    },
    "dependencies": {
        "@0xproject/assert": "^0.0.14",
        "@0xproject/utils": "^0.2.3",
        "bn.js": "^4.11.8",
        "es6-promisify": "^5.0.0",
        "ethereumjs-tx": "^1.3.3",
        "ethereumjs-util": "^5.1.1",
        "hdkey": "^0.7.1",
        "ledgerco": "0xProject/ledger-node-js-api",
        "lodash": "^4.17.4",
        "semaphore-async-await": "^1.5.1",
        "web3": "^0.20.0",
        "web3-provider-engine": "^13.0.1"
    },
    "devDependencies": {
        "@0xproject/tslint-config": "^0.4.5",
        "@0xproject/utils": "^0.2.3",
        "@types/lodash": "^4.14.86",
        "@types/mocha": "^2.2.42",
        "@types/node": "^8.0.53",
        "awesome-typescript-loader": "^3.1.3",
        "chai": "^4.0.1",
        "chai-as-promised": "^7.1.0",
        "chai-as-promised-typescript-typings": "^0.0.7",
        "chai-typescript-typings": "^0.0.2",
        "dirty-chai": "^2.0.1",
        "mocha": "^4.0.1",
        "npm-run-all": "^4.1.2",
        "shx": "^0.2.2",
        "tslint": "5.8.0",
        "types-bn": "^0.0.1",
        "types-ethereumjs-util": "0xproject/types-ethereumjs-util",
        "typescript": "~2.6.1",
        "web3-typescript-typings": "^0.9.5",
        "webpack": "^3.1.0"
    }
}