123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "amber",
- "version": "0.22.1",
- "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#0.22.1"
- },
- "engines": {
- "node": ">=4.0.0"
- },
- "strings": {
- "buildParserBegin": "// jshint ignore:start\ndefine(['./boot'], function($boot) {\nvar $globals = $boot.globals;\n",
- "buildParserEnd": "});"
- },
- "scripts": {
- "build:parser:begin": "node -e \"process.stdout.write(require('./package.json').strings.buildParserBegin);\"",
- "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(require('./package.json').strings.buildParserEnd);\"",
- "test": "npm run test:sunit && npm run test:e2e",
- "test:sunit": "grunt test",
- "test:e2e": "(cd external && cd cli && npm test)"
- },
- "devDependencies": {
- "amber-compat-es2015": "^0.1.4",
- "grunt": "1.0.1",
- "grunt-contrib-clean": "^1.1.0",
- "grunt-contrib-jshint": "^1.1.0",
- "grunt-contrib-requirejs": "^1.0.0",
- "grunt-exec": "^2.0.0",
- "pegjs": "^0.9.0",
- "requirejs": "^2.1.15"
- }
- }
|