1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "name": "@ambers/development",
- "version": "0.23.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": "https://lolg.it/amber/amber.git"
- },
- "private": true,
- "engines": {
- "node": ">=4.0.0"
- },
- "scripts": {
- "test": "npm run test:sunit && npm run test:e2e",
- "test:sunit": "grunt test",
- "test:e2e": "(cd cli && npm test)"
- },
- "devDependencies": {
- "es6-promise": "^4.2.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",
- "requirejs": "^2.1.15"
- }
- }
|