{ "name": "amber", "version": "0.16.0-pre", "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": "git://lolg.it/amber/amber.git" }, "engines": { "node": "0.10.x || 0.12.x || >=4.0.0" }, "scripts": { "build:parser:begin": "node -e \"process.stdout.write('define([\\'./boot\\'], function($boot) {\\nvar $globals = $boot.globals, nil = $boot.nil;\\n');\"", "build:parser": "(npm run -s build:parser:begin && pegjs --cache --export-var $globals.SmalltalkParser < support/parser.pegjs && npm run -s build:parser:end) > support/parser.js", "build:parser:end": "node -e \"process.stdout.write('});');\"", "test": "npm run test:sunit && npm run test:e2e", "test:sunit": "grunt test", "test:e2e": "(cd external && cd amber-cli && npm test)" }, "devDependencies": { "amber-compat-es2015": "^0.1.4", "grunt": "^0.4.0", "grunt-contrib-clean": "^0.7.0", "grunt-contrib-jshint": "^0.11.0", "grunt-contrib-requirejs": "^0.4.4", "grunt-execute": "^0.2.1", "pegjs": "^0.9.0", "requirejs": "^2.1.15" } }