UNPKG

tinylex

Version:

A simple iterative lexer written in TypeScript

50 lines (49 loc) 1.12 kB
{ "name": "tinylex", "version": "0.7.4", "description": "A simple iterative lexer written in TypeScript", "main": "index.js", "scripts": { "start": "webpack --watch", "dev": "npm run build && node dev/main dev/source.darklord", "build": "webpack", "test": "npm run build && mocha spec/*.spec.js" }, "repository": { "type": "git", "url": "git+https://github.com/jabney/tinylex.git" }, "keywords": [ "lex", "lexer", "lexical", "lexeme", "tokenize", "tokenization" ], "author": "James Abney", "license": "MIT", "bugs": { "url": "https://github.com/jabney/tinylex/issues" }, "homepage": "https://github.com/jabney/tinylex#readme", "devDependencies": { "@types/node": "^8.5.5", "babel-core": "^6.26.3", "babel-loader": "^7.1.2", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.7.0", "mocha": "^4.1.0", "nodemon": "^1.19.0", "ts-loader": "^3.2.0", "typescript": "^2.6.2", "webpack": "^3.10.0" }, "files": [ "index.js", "tinylex.ts", "dist/", "spec" ], "dependencies": {} }