forked from cerc-io/plugeth
Updated package.json
This commit is contained in:
parent
15088d7ebe
commit
45d0d72138
6
.npmignore
Normal file
6
.npmignore
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
example/js
|
||||||
|
node_modules
|
||||||
|
test
|
||||||
|
.gitignore
|
||||||
|
.travis.yml
|
||||||
|
component.json
|
22
dist/ethereum.js
vendored
22
dist/ethereum.js
vendored
@ -131,20 +131,20 @@ module.exports = HttpRpcProvider;
|
|||||||
|
|
||||||
},{"xmlhttprequest":1}],3:[function(require,module,exports){
|
},{"xmlhttprequest":1}],3:[function(require,module,exports){
|
||||||
/*
|
/*
|
||||||
This file is part of ethereum.js.
|
This file is part of ethereum.js.
|
||||||
|
|
||||||
ethereum.js is free software: you can redistribute it and/or modify
|
ethereum.js is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU Lesser General Public License as published by
|
it under the terms of the GNU Lesser General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
ethereum.js is distributed in the hope that it will be useful,
|
ethereum.js is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU Lesser General Public License for more details.
|
GNU Lesser General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public License
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
/** @file main.js
|
/** @file main.js
|
||||||
* @authors:
|
* @authors:
|
||||||
|
22
lib/main.js
22
lib/main.js
@ -1,18 +1,18 @@
|
|||||||
/*
|
/*
|
||||||
This file is part of ethereum.js.
|
This file is part of ethereum.js.
|
||||||
|
|
||||||
ethereum.js is free software: you can redistribute it and/or modify
|
ethereum.js is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU Lesser General Public License as published by
|
it under the terms of the GNU Lesser General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
(at your option) any later version.
|
(at your option) any later version.
|
||||||
|
|
||||||
ethereum.js is distributed in the hope that it will be useful,
|
ethereum.js is distributed in the hope that it will be useful,
|
||||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
GNU Lesser General Public License for more details.
|
GNU Lesser General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public License
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
along with ethereum.js. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
/** @file main.js
|
/** @file main.js
|
||||||
* @authors:
|
* @authors:
|
||||||
|
13
package.json
13
package.json
@ -5,7 +5,8 @@
|
|||||||
"description": "Ethereum Compatible JavaScript API",
|
"description": "Ethereum Compatible JavaScript API",
|
||||||
"main": "./index.js",
|
"main": "./index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
"lib": "./lib"
|
"lib": "lib",
|
||||||
|
"example": "example"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"es6-promise": "*",
|
"es6-promise": "*",
|
||||||
@ -26,23 +27,25 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "gulp",
|
"build": "gulp",
|
||||||
"watch": "gulp watch",
|
"watch": "gulp watch",
|
||||||
"lint": "jshint lib"
|
"lint": "gulp lint"
|
||||||
},
|
},
|
||||||
"browser": {
|
"browser": {
|
||||||
"xmlhttprequest": "./lib/browser_fix/xhr.js"
|
"xmlhttprequest": "./lib/browser_fix/xhr.js"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/ethereum/ethereum.js.git"
|
"url": "https://github.com/cubedro/ethereum.js.git"
|
||||||
},
|
},
|
||||||
|
"homepage": "https://github.com/cubedro/ethereum.js",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/ethereum/ethereum.js/issues"
|
"url": "https://github.com/cubedro/ethereum.js/issues"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"ethereum",
|
"ethereum",
|
||||||
"javascript",
|
"javascript",
|
||||||
"API"
|
"API"
|
||||||
],
|
],
|
||||||
|
"author": "ethdev.com",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Jeffery Wilcke",
|
"name": "Jeffery Wilcke",
|
||||||
@ -60,5 +63,5 @@
|
|||||||
"url": "https://github.com/cubedro"
|
"url": "https://github.com/cubedro"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"license": "LGPL"
|
"license": "LGPL-3.0"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user