makam
Version:
The Makam metalanguage -- a tool for rapid language prototyping
57 lines (56 loc) • 1.26 kB
JSON
{
"name": "makam",
"version": "0.7.40",
"description": "The Makam metalanguage -- a tool for rapid language prototyping",
"main": "lib/index.js",
"scripts": {
"test": "yarn jest",
"build": "flow-remove-types --ignore test.js --out-dir lib/ src/",
"dev-makam": "yarn build && yarn makam",
"makam": "node ./lib/repl.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astampoulis/makam.git"
},
"bin": {
"makam": "lib/repl.js"
},
"files": [
"lib",
"makam-bin-linux64",
"makam-bin-darwin64",
"stdlib",
"stdlib-cache"
],
"devDependencies": {
"flow-bin": "^0.109.0",
"flow-remove-types": "^2.109.0",
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"author": {
"name": "Antonis Stampoulis",
"email": "antonis.stampoulis+makam@gmail.com",
"url": "http://astampoulis.github.io/"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/astampoulis/makam/issues"
},
"homepage": "http://astampoulis.github.io/makam/",
"keywords": [
"makam",
"lambda-prolog",
"metalanguage",
"cli",
"binary",
"bin"
],
"jest": {
"testEnvironment": "node",
"transform": {
"\\.js$": "./remove_types.js"
}
}
}