UNPKG

solparse

Version:

PEG.js Solidity parser for Javascript

49 lines (48 loc) 1.18 kB
{ "name": "solparse", "version": "2.2.8", "description": "PEG.js Solidity parser for Javascript", "main": "index.js", "scripts": { "prepublish": "npm run build", "build": "mkdir -p ./build && pegjs --cache -o ./build/parser.js ./solidity.pegjs && pegjs -o ./build/imports_parser.js ./imports.pegjs", "test": "mocha --timeout 5000 --reporter spec", "lint": "eslint index.js test/ cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/duaraghav8/solparse.git" }, "bin": { "solidity-parser": "./cli.js" }, "contributors": [ { "name": "Tim Coulter", "email": "tim@timothyjcoulter.com", "url": "http://timothyjcoulter.com" }, { "name": "Raghav Dua", "email": "duaraghav8@gmail.com", "url": "http://raghavdua.com" }, { "name": "Federico Bond", "email": "federicobond@gmail.com" }, { "name": "Christopher Gewecke", "email": "christophergewecke@gmail.com" } ], "license": "MIT", "dependencies": { "mocha": "^4.0.1", "pegjs": "^0.10.0", "yargs": "^10.0.3" }, "devDependencies": { "mkdirp": "^0.5.1" } }