it-fsm/package.json

46 lines
1 KiB
JSON
Raw Normal View History

2019-10-11 10:54:07 +03:00
{
"name": "it-fsm",
2020-11-06 06:16:01 +03:00
"version": "1.0.8",
2019-10-11 10:54:07 +03:00
"description": "Simple finite state machine for nodejs",
2020-11-06 06:13:43 +03:00
"main": "./target/index.js",
"types": "./target/index.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": {
"test": "jest",
2020-11-06 06:13:43 +03:00
"prepublishOnly": "rm -rf ./target && tsc",
2019-10-11 10:54:07 +03:00
"report-coverage": "cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/icetemple/npm-it-fsm.git"
},
"keywords": [
"fsm",
"finite",
"state",
"machine",
"icetemple",
"it"
],
"author": "Dmitriy Pleshevskiy <dmitriy@ideascup.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/icetemple/npm-it-fsm/issues"
},
"homepage": "https://github.com/icetemple/npm-it-fsm#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
2019-10-19 20:06:18 +03:00
"@types/lodash.clonedeep": "^4.5.6",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.3",
"typescript": "^4.0.5"
2019-10-19 20:06:18 +03:00
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
2019-10-11 10:54:07 +03:00
}
}