This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
62 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
# ethereumjs-config | ||
Common configuration for EthereumJS libraries | ||
|
||
## Development | ||
|
||
This is a lerna monorepo. You need to have lerna installed globally in your system. Then do: | ||
``` | ||
lerna bootstrap | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"packages": [ | ||
"packages/*" | ||
], | ||
"version": "0.0.0" | ||
} |
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,10 +1,7 @@ | ||
{ | ||
"name": "ethereumjs-config", | ||
"version": "0.0.1", | ||
"repository": "[email protected]:ethereumjs/ethereumjs-config.git", | ||
"author": "Krzysztof Kaczor <[email protected]>", | ||
"license": "MIT", | ||
"files": [ | ||
"typescript/**" | ||
] | ||
"name": "root", | ||
"private": true, | ||
"devDependencies": { | ||
"lerna": "^3.6.0" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "ethereumjs-config-tsc", | ||
"version": "1.0.0", | ||
"main": "tsconfig.json", | ||
"license": "MIT", | ||
"repository": "[email protected]:ethereumjs/ethereumjs-config.git", | ||
"author": "Krzysztof Kaczor <[email protected]>", | ||
"files": [ | ||
"tsconfig.json" | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "ethereumjs-config-nyc", | ||
"version": "1.0.0", | ||
"main": "nyc.json", | ||
"license": "MIT", | ||
"repository": "[email protected]:ethereumjs/ethereumjs-config.git", | ||
"author": "Krzysztof Kaczor <[email protected]>", | ||
"files": [ | ||
"nyc.json" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "ethereumjs-config-prettier", | ||
"version": "1.0.0", | ||
"main": "prettier.json", | ||
"license": "MIT", | ||
"repository": "[email protected]:ethereumjs/ethereumjs-config.git", | ||
"author": "Krzysztof Kaczor <[email protected]>", | ||
"files": [ | ||
"prettier.json" | ||
] | ||
} |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"name": "ethereumjs-config-tslint", | ||
"version": "1.0.0", | ||
"main": "tslint.json", | ||
"license": "MIT", | ||
"repository": "[email protected]:ethereumjs/ethereumjs-config.git", | ||
"author": "Krzysztof Kaczor <[email protected]>", | ||
"files": [ | ||
"tslint.json" | ||
] | ||
} |
File renamed without changes.