123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "amber",
- "version": "0.15.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": {
- "type": "MIT"
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/amber-smalltalk/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": {
- "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"
- }
- }
|