it-fsm/package.json

45 lines
1004 B
JSON
Raw Normal View History

2019-10-11 10:54:07 +03:00
{
"name": "it-fsm",
2022-11-17 16:26:46 +03:00
"version": "2.0.3",
2019-10-11 10:54:07 +03:00
"description": "Simple finite state machine for nodejs",
"readme": "README.md",
"scripts": {
2022-11-19 16:33:13 +03:00
"prepublishOnly": "make build"
2019-10-11 10:54:07 +03:00
},
"repository": {
"type": "git",
2022-06-21 16:56:49 +03:00
"url": "git+https://git.pleshevski.ru/pleshevskiy/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
],
2022-11-17 14:51:58 +03:00
"author": "Dmitriy Pleshevskiy <dmitriy@pleshevski.ru>",
2022-06-21 16:56:49 +03:00
"license": "GPL-3.0-or-later",
2019-10-11 10:54:07 +03:00
"bugs": {
2022-11-17 14:51:58 +03:00
"url": "https://github.com/pleshevskiy/it-fsm/issues"
2019-10-11 10:54:07 +03:00
},
2022-06-21 16:56:49 +03:00
"homepage": "https://git.pleshevski.ru/pleshevskiy/it-fsm#readme",
2022-11-17 14:51:58 +03:00
"main": "./dist/cjs/fsm.js",
"module": "./dist/esm/fsm.js",
"types": "./dist/esm/fsm.d.ts",
"typings": "dist/esm/fsm.d.ts",
"typescript": {
"definition": "dist/esm/fsm.d.ts"
},
"type": "module",
"sideEffects": false,
2022-11-17 16:26:46 +03:00
"files": ["dist"],
"exports": {
".": {
"require": "./dist/cjs/fsm.js",
"import": "./dist/esm/fsm.js"
}
}
2019-10-11 10:54:07 +03:00
}