commit
d91743aac4
@ -0,0 +1,5 @@ |
|||||||
|
var CodeAnalysis = require('./src/analysis/staticAnalysisRunner') |
||||||
|
|
||||||
|
module.exports = { |
||||||
|
CodeAnalysis: CodeAnalysis |
||||||
|
} |
@ -0,0 +1,42 @@ |
|||||||
|
{ |
||||||
|
"name": "remix-analyzer", |
||||||
|
"version": "0.1.0", |
||||||
|
"description": "Remix Analyzer", |
||||||
|
"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" |
||||||
|
} |
||||||
|
], |
||||||
|
"dependencies": { |
||||||
|
"babel-eslint": "^7.1.1", |
||||||
|
"babel-plugin-transform-object-assign": "^6.22.0", |
||||||
|
"remix-lib": "^0.2.9", |
||||||
|
"babel-preset-es2015": "^6.24.0", |
||||||
|
"solc": "^0.4.24", |
||||||
|
"standard": "^7.0.1", |
||||||
|
"tape": "^4.6.0" |
||||||
|
}, |
||||||
|
"scripts": { |
||||||
|
"test": "standard && tape ./test/tests.js" |
||||||
|
}, |
||||||
|
"standard": { |
||||||
|
"ignore": [ |
||||||
|
"node_modules/*", |
||||||
|
"soljson.js" |
||||||
|
], |
||||||
|
"parser": "babel-eslint" |
||||||
|
}, |
||||||
|
"author": "Remix Team", |
||||||
|
"license": "MIT", |
||||||
|
"homepage": "https://github.com/ethereum/remix#readme" |
||||||
|
} |
@ -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