parent
8ea5d861f0
commit
4742022f23
@ -0,0 +1,5 @@ |
|||||||
|
var CodeAnalysis = require('./src/analysis/staticAnalysisRunner') |
||||||
|
|
||||||
|
module.exports = { |
||||||
|
CodeAnalysis: CodeAnalysis |
||||||
|
} |
@ -0,0 +1,25 @@ |
|||||||
|
{ |
||||||
|
"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" |
||||||
|
} |
@ -1,9 +1,7 @@ |
|||||||
var CodeAnalysis = require('./src/analysis/staticAnalysisRunner') |
|
||||||
var Compiler = require('./src/compiler/compiler') |
var Compiler = require('./src/compiler/compiler') |
||||||
var CompilerInput = require('./src/compiler/compiler-input') |
var CompilerInput = require('./src/compiler/compiler-input') |
||||||
|
|
||||||
module.exports = { |
module.exports = { |
||||||
CodeAnalysis: CodeAnalysis, |
|
||||||
Compiler: Compiler, |
Compiler: Compiler, |
||||||
CompilerInput: CompilerInput |
CompilerInput: CompilerInput |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue