UNPKG

fsmachine

Version:

> A simple and small TypeScript finite state machine

48 lines (47 loc) 1 kB
{ "name": "fsmachine", "version": "2.2.1", "description": "", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "clean": "rimraf dist", "prepublishOnly": "yarn run clean && tsc", "test": "mocha \"dist/**/*.spec.js\" --exit" }, "repository": { "type": "git", "url": "git+https://github.com/seikho/fsmachine.git" }, "keywords": [ "finite", "state", "machine", "typescript" ], "author": "Carl Winkler", "license": "ISC", "bugs": { "url": "https://github.com/seikho/fsmachine/issues" }, "homepage": "https://github.com/seikho/fsmachine#readme", "devDependencies": { "@types/chai": "^4.2.12", "@types/mocha": "^8.0.3", "@types/node": "^14.11.2", "chai": "^4.2.0", "mocha": "^8.1.3", "rimraf": "^3.0.2", "typescript": "^4.0.3" }, "files": [ "dist/*.js", "dist/*.ts", "src/*.ts", "src/*.js", "yarn.lock", "package.json", "readme.md", "tsconfig.json" ] }