36 lines
753 B
JSON
36 lines
753 B
JSON
{
|
|
"name": "it-fsm",
|
|
"version": "2.0.0",
|
|
"description": "Simple finite state machine for nodejs",
|
|
"main": "./dest/fsm.js",
|
|
"types": "./dest/fsm.d.ts",
|
|
"readme": "README.md",
|
|
"files": [
|
|
"target"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "rm -rf ./dest && tsc"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/icetemple/it-fsm.git"
|
|
},
|
|
"keywords": [
|
|
"fsm",
|
|
"finite",
|
|
"state",
|
|
"machine",
|
|
"just",
|
|
"ood",
|
|
"oop"
|
|
],
|
|
"author": "Dmitriy Pleshevskiy <dmitriy@ideascup.me>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/icetemple/it-fsm/issues"
|
|
},
|
|
"homepage": "https://github.com/icetemple/it-fsm#readme",
|
|
"devDependencies": {
|
|
"typescript": "^4.3.5"
|
|
}
|
|
}
|