{ "name": "@ambers/lang", "version": "0.22.3", "description": "An implementation of the Smalltalk language that runs on top of the JS runtime.", "homepage": "http://amber-lang.net", "keywords": [ "javascript", "smalltalk", "language", "compiler", "web" ], "author": { "name": "Nicolas Petton", "email": "petton.nicolas@gmail.com", "url": "http://www.nicolas-petton.fr" }, "license": "MIT", "repository": { "type": "git", "url": "https://lolg.it/amber/amber.git" }, "engines": { "node": ">=4.0.0" }, "strings": { "buildParserBegin": "// jshint ignore:start\ndefine(['./boot'], function($boot) {\nvar $globals = $boot.globals;\n", "buildParserEnd": "});" }, "scripts": { "echos": "node -e \"process.stdout.write(require('./package.json').strings[process.argv[1]])\"", "build:parser": "(npm run -s echos buildParserBegin && pegjs --cache --export-var \"$\"globals.SmalltalkParser < base/parser.pegjs && npm run -s echos buildParserEnd) > base/parser.js" }, "devDependencies": { "pegjs": "^0.9.0" } }