Commit 4742022f authored by Iuri Matias's avatar Iuri Matias

move code analyzer to its own repo

parent 8ea5d861
var CodeAnalysis = require('./src/analysis/staticAnalysisRunner')
module.exports = {
CodeAnalysis: CodeAnalysis
}
{
"name": "remix-analyzer",
"version": "0.1.0",
"description": "",
"main": "index.js",
"contributors": [
{
"name": "Alex Beregszaszi",
"email": "alex@rtfs.hu"
},
{
"name": "Iuri Matias",
"email": "iuri@ethereum.org"
},
{
"name": "Yann Levreau",
"email": "yann@ethdev.com"
}
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
var CodeAnalysis = require('./src/analysis/staticAnalysisRunner')
var Compiler = require('./src/compiler/compiler')
var CompilerInput = require('./src/compiler/compiler-input')
module.exports = {
CodeAnalysis: CodeAnalysis,
Compiler: Compiler,
CompilerInput: CompilerInput
}
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