Updated package.json
Showing
.npmignore
0 → 100644
| ... | @@ -5,7 +5,8 @@ | ... | @@ -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 @@ | ... | @@ -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 @@ | ... | @@ -60,5 +63,5 @@ |
| "url": "https://github.com/cubedro" | "url": "https://github.com/cubedro" | ||
| } | } | ||
| ], | ], | ||
| "license": "LGPL" | "license": "LGPL-3.0" | ||
| } | } |
Please register or sign in to comment