1234567891011121314151617181920212223242526272829303132 |
- {
- "name": "@ambers/lang",
- "version": "0.25.2",
- "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.25.2"
- },
- "engines": {
- "node": ">=4.0.0"
- },
- "scripts": {
- "build:parser": "pegjs --cache -o base/parser.js --format amd --dependency __boot:./boot base/parser.pegjs"
- },
- "devDependencies": {
- "pegjs": "^0.10.0"
- }
- }
|