UNPKG

toylang

Version:

A toy programming language built with TypeScript for learning purposes

48 lines (47 loc) 1.13 kB
{ "name": "toylang", "version": "1.0.1", "description": "A toy programming language built with TypeScript for learning purposes", "homepage": "https://github.com/anuraghazra/ToyLang", "main": "dist/index.js", "types": "dist/types/index.d.ts", "files": [ "dist" ], "scripts": { "test": "jest", "dev": "ts-node index", "build": "tsc", "prepublish": "tsc", "example": "ts-node examples/runner" }, "devDependencies": { "jest": "^26.6.3", "ts-jest": "^26.5.6", "ts-node": "^9.1.1" }, "dependencies": { "@types/jest": "^26.0.23", "typescript": "^4.2.4" }, "keywords": [ "toy", "programming-language", "parser", "typescript", "interpreter" ], "author": "Anurag Hazra <hazru.anurag@gmail.com>", "license": "MIT", "repository": "github:anuraghazra/ToyLang", "bugs": { "url": "https://github.com/anuraghazra/ToyLang/issues" }, "funding": [ { "type": "individual", "url": "https://www.paypal.me/anuraghazra" }, "https://www.buymeacoffee.com/anuraghazra" ] }