ecmascript 0.2.0

A rust implementation of an ECMAScript parser
1
2
3
4
5
6
7
8
9
module.exports = {
    entry:  __dirname + "/src/esprima.js",
    output: {
        path:  __dirname + "/dist",
        filename: "esprima.js",
        libraryTarget: "umd",
        library: "esprima"
    }
}