it-fsm/package.json

37 lines
753 B
JSON
Raw Normal View History

2019-10-11 10:54:07 +03:00
{
"name": "it-fsm",
2021-08-20 01:32:01 +03:00
"version": "2.0.0",
2019-10-11 10:54:07 +03:00
"description": "Simple finite state machine for nodejs",
2021-08-20 01:32:01 +03:00
"main": "./dest/fsm.js",
"types": "./dest/fsm.d.ts",
2019-10-11 10:54:07 +03:00
"readme": "README.md",
"files": [
2020-11-06 06:13:43 +03:00
"target"
2019-10-11 10:54:07 +03:00
],
"scripts": {
2021-08-20 01:32:01 +03:00
"prepublishOnly": "rm -rf ./dest && tsc"
2019-10-11 10:54:07 +03:00
},
"repository": {
"type": "git",
2021-08-20 11:18:40 +03:00
"url": "git+https://github.com/icetemple/it-fsm.git"
2019-10-11 10:54:07 +03:00
},
"keywords": [
"fsm",
"finite",
"state",
"machine",
2021-08-20 11:19:37 +03:00
"just",
"ood",
"oop"
2019-10-11 10:54:07 +03:00
],
"author": "Dmitriy Pleshevskiy <dmitriy@ideascup.me>",
"license": "MIT",
"bugs": {
2021-08-20 11:18:40 +03:00
"url": "https://github.com/icetemple/it-fsm/issues"
2019-10-11 10:54:07 +03:00
},
2021-08-20 11:18:40 +03:00
"homepage": "https://github.com/icetemple/it-fsm#readme",
2019-10-11 10:54:07 +03:00
"devDependencies": {
2021-08-20 01:32:01 +03:00
"typescript": "^4.3.5"
2019-10-11 10:54:07 +03:00
}
}