chore: change package org from 0xproject to 0x

This commit is contained in:
Jacob Evans
2018-10-18 21:51:56 +11:00
parent 9e8bca69a8
commit 9f924e459c
344 changed files with 986 additions and 978 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "@0xproject/sol-cov",
"name": "@0x/sol-cov",
"version": "2.1.7",
"engines": {
"node": ">=6.12"
@@ -42,12 +42,12 @@
},
"homepage": "https://github.com/0xProject/0x.js/packages/sol-cov/README.md",
"dependencies": {
"@0xproject/dev-utils": "^1.0.12",
"@0xproject/sol-compiler": "^1.1.7",
"@0xproject/subproviders": "^2.0.7",
"@0xproject/typescript-typings": "^3.0.2",
"@0xproject/utils": "^2.0.2",
"@0xproject/web3-wrapper": "^3.0.3",
"@0x/dev-utils": "^1.0.12",
"@0x/sol-compiler": "^1.1.7",
"@0x/subproviders": "^2.0.7",
"@0x/typescript-typings": "^3.0.2",
"@0x/utils": "^2.0.2",
"@0x/web3-wrapper": "^3.0.3",
"@types/solidity-parser-antlr": "^0.2.0",
"ethereum-types": "^1.0.11",
"ethereumjs-util": "^5.1.1",
@@ -61,7 +61,7 @@
"solidity-parser-antlr": "^0.2.12"
},
"devDependencies": {
"@0xproject/tslint-config": "^1.0.8",
"@0x/tslint-config": "^1.0.8",
"@types/istanbul": "^0.4.30",
"@types/loglevel": "^1.5.3",
"@types/mkdirp": "^0.5.1",

View File

@@ -1,4 +1,4 @@
import { logUtils } from '@0xproject/utils';
import { logUtils } from '@0x/utils';
import { CompilerOptions, ContractArtifact } from 'ethereum-types';
import * as fs from 'fs';
import * as glob from 'glob';

View File

@@ -1,4 +1,4 @@
import { Compiler, CompilerOptions } from '@0xproject/sol-compiler';
import { Compiler, CompilerOptions } from '@0x/sol-compiler';
import * as fs from 'fs';
import * as glob from 'glob';
import * as path from 'path';

View File

@@ -22,4 +22,4 @@ export {
ErrorCallback,
OnNextCompleted,
Callback,
} from '@0xproject/subproviders';
} from '@0x/subproviders';

View File

@@ -1,4 +1,4 @@
import { logUtils } from '@0xproject/utils';
import { logUtils } from '@0x/utils';
import { OpCode, StructLog } from 'ethereum-types';
import * as _ from 'lodash';

View File

@@ -1,4 +1,4 @@
import { logUtils } from '@0xproject/utils';
import { logUtils } from '@0x/utils';
import { OpCode, StructLog } from 'ethereum-types';
import * as _ from 'lodash';

View File

@@ -1,6 +1,6 @@
import { BlockchainLifecycle } from '@0xproject/dev-utils';
import { Callback, ErrorCallback, NextCallback, Subprovider } from '@0xproject/subproviders';
import { CallDataRPC, marshaller, Web3Wrapper } from '@0xproject/web3-wrapper';
import { BlockchainLifecycle } from '@0x/dev-utils';
import { Callback, ErrorCallback, NextCallback, Subprovider } from '@0x/subproviders';
import { CallDataRPC, marshaller, Web3Wrapper } from '@0x/web3-wrapper';
import { JSONRPCRequestPayload, Provider, TxData } from 'ethereum-types';
import * as _ from 'lodash';
import { Lock } from 'semaphore-async-await';

View File

@@ -1,4 +1,4 @@
import { promisify } from '@0xproject/utils';
import { promisify } from '@0x/utils';
import { stripHexPrefix } from 'ethereumjs-util';
import * as fs from 'fs';
import { Collector } from 'istanbul';

View File

@@ -1,4 +1,4 @@
import { addressUtils, BigNumber } from '@0xproject/utils';
import { addressUtils, BigNumber } from '@0x/utils';
import { OpCode, StructLog } from 'ethereum-types';
import { addHexPrefix } from 'ethereumjs-util';
import * as _ from 'lodash';