-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
travis script command created in package.json and core-method module …
…index.d.ts fixed
- Loading branch information
Samuel Furter
committed
Jan 17, 2019
1 parent
748649c
commit 54e29f6
Showing
3 changed files
with
104 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,109 +1,110 @@ | ||
{ | ||
"name": "web3", | ||
"namespace": "ethereum", | ||
"version": "1.0.0-beta.38", | ||
"description": "Ethereum JavaScript API wrapper repository", | ||
"license": "LGPL-3.0", | ||
"main": "./packages/web3/src/index.js", | ||
"directories": { | ||
"doc": "./doc", | ||
"test": "./test" | ||
}, | ||
"scripts": { | ||
"clean": "lerna clean", | ||
"link": "lerna link", | ||
"bootstrap": "lerna bootstrap", | ||
"install:all": "lerna add", | ||
"remove:all": "lerna exec npm uninstall", | ||
"build": "lerna run build", | ||
"test": "lerna run test", | ||
"coveralls": "cat ./coverage/lcov.info | coveralls", | ||
"test:coverage": "lerna run test -- -- --coverage && istanbul-combine -d coverage -r lcov -r html ./packages/**/coverage-final.json", | ||
"release": "lerna bootstrap; lerna publish; gulp version; gulp; gulp publishTag; git push --tags", | ||
"docs": "cd docs; make html;", | ||
"format": "prettier --config ./.prettierrc --write ./packages/**/*.js", | ||
"lint": "eslint --cache --fix .", | ||
"dtslint": "lerna run dtslint" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ethereum/web3.js.git" | ||
}, | ||
"homepage": "https://github.com/ethereum/web3.js", | ||
"bugs": { | ||
"url": "https://github.com/ethereum/web3.js/issues" | ||
}, | ||
"keywords": [ | ||
"Ethereum", | ||
"JavaScript", | ||
"API" | ||
], | ||
"author": "Ethereum Foundation", | ||
"authors": [ | ||
{ | ||
"name": "Samuel Furter", | ||
"email": "samuel@ethereum.org", | ||
"homepage": "https://github.com/nivida" | ||
"name": "web3", | ||
"namespace": "ethereum", | ||
"version": "1.0.0-beta.38", | ||
"description": "Ethereum JavaScript API wrapper repository", | ||
"license": "LGPL-3.0", | ||
"main": "./packages/web3/src/index.js", | ||
"directories": { | ||
"doc": "./doc", | ||
"test": "./test" | ||
}, | ||
{ | ||
"name": "Fabian Vogelsteller", | ||
"email": "fabian@ethereum.org", | ||
"homepage": "https://github.com/frozeman" | ||
"scripts": { | ||
"clean": "lerna clean", | ||
"link": "lerna link", | ||
"bootstrap": "lerna bootstrap", | ||
"install:all": "lerna add", | ||
"remove:all": "lerna exec npm uninstall", | ||
"build": "lerna run build", | ||
"test": "lerna run test", | ||
"coveralls": "cat ./coverage/lcov.info | coveralls", | ||
"test:coverage": "lerna run test -- -- --coverage && istanbul-combine -d coverage -r lcov -r html ./packages/**/coverage-final.json", | ||
"release": "lerna bootstrap; lerna publish; gulp version; gulp; gulp publishTag; git push --tags", | ||
"docs": "cd docs; make html;", | ||
"format": "prettier --config ./.prettierrc --write ./packages/**/*.js", | ||
"lint": "eslint --cache --fix .", | ||
"dtslint": "lerna run dtslint", | ||
"travis": "npm run lint && npm run build && npm run test:coverage && npm run dtslint" | ||
}, | ||
{ | ||
"name": "Marek Kotewicz", | ||
"email": "marek@parity.io", | ||
"url": "https://github.com/debris" | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/ethereum/web3.js.git" | ||
}, | ||
{ | ||
"name": "Marian Oancea", | ||
"url": "https://github.com/cubedro" | ||
"homepage": "https://github.com/ethereum/web3.js", | ||
"bugs": { | ||
"url": "https://github.com/ethereum/web3.js/issues" | ||
}, | ||
{ | ||
"name": "Gav Wood", | ||
"email": "g@parity.io", | ||
"homepage": "http://gavwood.com" | ||
}, | ||
{ | ||
"name": "Jeffery Wilcke", | ||
"email": "jeffrey.wilcke@ethereum.org", | ||
"url": "https://github.com/obscuren" | ||
"keywords": [ | ||
"Ethereum", | ||
"JavaScript", | ||
"API" | ||
], | ||
"author": "Ethereum Foundation", | ||
"authors": [ | ||
{ | ||
"name": "Samuel Furter", | ||
"email": "samuel@ethereum.org", | ||
"homepage": "https://github.com/nivida" | ||
}, | ||
{ | ||
"name": "Fabian Vogelsteller", | ||
"email": "fabian@ethereum.org", | ||
"homepage": "https://github.com/frozeman" | ||
}, | ||
{ | ||
"name": "Marek Kotewicz", | ||
"email": "marek@parity.io", | ||
"url": "https://github.com/debris" | ||
}, | ||
{ | ||
"name": "Marian Oancea", | ||
"url": "https://github.com/cubedro" | ||
}, | ||
{ | ||
"name": "Gav Wood", | ||
"email": "g@parity.io", | ||
"homepage": "http://gavwood.com" | ||
}, | ||
{ | ||
"name": "Jeffery Wilcke", | ||
"email": "jeffrey.wilcke@ethereum.org", | ||
"url": "https://github.com/obscuren" | ||
} | ||
], | ||
"devDependencies": { | ||
"@babel/core": "^7.1.5", | ||
"@babel/plugin-proposal-export-default-from": "^7.0.0", | ||
"@babel/plugin-proposal-export-namespace-from": "^7.0.0", | ||
"@babel/plugin-transform-runtime": "^7.2.0", | ||
"@babel/polyfill": "^7.0.0", | ||
"@babel/preset-env": "^7.1.5", | ||
"@babel/runtime": "^7.1.5", | ||
"@types/bn.js": "^4.11.3", | ||
"@types/node": "^10.12.12", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-eslint": "^10.0.1", | ||
"babel-jest": "^23.6.0", | ||
"coveralls": "^3.0.2", | ||
"eslint": "^5.7.0", | ||
"eslint-config-prettier": "^3.1.0", | ||
"eslint-config-standard": "^12.0.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jest": "^21.25.1", | ||
"eslint-plugin-node": "^7.0.1", | ||
"eslint-plugin-prettier": "^3.0.0", | ||
"eslint-plugin-promise": "^4.0.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"eslint-plugin-unicorn": "^6.0.1", | ||
"istanbul-combine": "^0.3.0", | ||
"jest": "^23.6.0", | ||
"lerna": "^2.5.1", | ||
"prettier": "1.14.3", | ||
"regenerator-runtime": "^0.13.1", | ||
"rollup": "^0.67.0", | ||
"rollup-plugin-auto-external": "^2.0.0", | ||
"rollup-plugin-babel": "^4.0.3", | ||
"rollup-plugin-cleanup": "^3.0.0", | ||
"rollup-plugin-json": "^3.1.0", | ||
"typescript": "^3.2.2" | ||
} | ||
], | ||
"devDependencies": { | ||
"@babel/core": "^7.1.5", | ||
"@babel/plugin-proposal-export-default-from": "^7.0.0", | ||
"@babel/plugin-proposal-export-namespace-from": "^7.0.0", | ||
"@babel/plugin-transform-runtime": "^7.2.0", | ||
"@babel/polyfill": "^7.0.0", | ||
"@babel/preset-env": "^7.1.5", | ||
"@babel/runtime": "^7.1.5", | ||
"@types/bn.js": "^4.11.3", | ||
"@types/node": "^10.12.12", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-eslint": "^10.0.1", | ||
"babel-jest": "^23.6.0", | ||
"coveralls": "^3.0.2", | ||
"eslint": "^5.7.0", | ||
"eslint-config-prettier": "^3.1.0", | ||
"eslint-config-standard": "^12.0.0", | ||
"eslint-plugin-import": "^2.14.0", | ||
"eslint-plugin-jest": "^21.25.1", | ||
"eslint-plugin-node": "^7.0.1", | ||
"eslint-plugin-prettier": "^3.0.0", | ||
"eslint-plugin-promise": "^4.0.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"eslint-plugin-unicorn": "^6.0.1", | ||
"istanbul-combine": "^0.3.0", | ||
"jest": "^23.6.0", | ||
"lerna": "^2.5.1", | ||
"prettier": "1.14.3", | ||
"regenerator-runtime": "^0.13.1", | ||
"rollup": "^0.67.0", | ||
"rollup-plugin-auto-external": "^2.0.0", | ||
"rollup-plugin-babel": "^4.0.3", | ||
"rollup-plugin-cleanup": "^3.0.0", | ||
"rollup-plugin-json": "^3.1.0", | ||
"typescript": "^3.2.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,3 @@ export class AbstractMethod { | |
} | ||
|
||
export class MethodModuleFactory { } // TODO: Define methods | ||
|