Commit cfb8a77a authored by Richard Littauer's avatar Richard Littauer

docs: Edit modules list, add README and lint to analyzer

parent c7d02259
...@@ -40,11 +40,15 @@ The debugger itself contains several controls that allow stepping over the trace ...@@ -40,11 +40,15 @@ The debugger itself contains several controls that allow stepping over the trace
## <a name="modules"></a>Remix Modules ## <a name="modules"></a>Remix Modules
Remix is built out of 3 different modules: Remix is built out of several different modules:
+ [`remix-analyzer`](remix-analyzer/README.md)
+ [`remix-solidity`](remix-solidity/README.md) provides Solidity analysis and decoding functions. + [`remix-solidity`](remix-solidity/README.md) provides Solidity analysis and decoding functions.
+ [`remix-lib`](remix-lib/README.md) + [`remix-lib`](remix-lib/README.md)
+ [`remix-debug`](remix-debugger/README.md) contains the debugger. + [`remix-debug`](remix-debugger/README.md) is now *deprecated*. It contains the debugger.
+ [`remix-tests`](remix-tests/README.md) contains our tests.
Each generally has their own npm package and test suite, as well as basic documentation.
## Contributing ## Contributing
......
# Remix Analyzer
## Install
```sh
npm i remix-analyzer
```
## Contribute
We need some better documentation. Besides that, we are always open to new features or bug reports. Open an issue or a pull request.
### Tests
Make sure that you add test cases.
```sh
npm run test
```
The code style should conform to standard; make sure to your lint your code before submitting a PR.
## License
MIT (c) 2018 Remix Team
...@@ -27,7 +27,8 @@ ...@@ -27,7 +27,8 @@
"tape": "^4.6.0" "tape": "^4.6.0"
}, },
"scripts": { "scripts": {
"test": "standard && tape ./test/tests.js" "lint": "standard",
"test": "lint && tape ./test/tests.js"
}, },
"standard": { "standard": {
"ignore": [ "ignore": [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment