@div-int/typedfsm
Version:
A TypeScript finite state machine library
67 lines (66 loc) • 1.86 kB
JSON
{
"name": "@div-int/typedfsm",
"version": "0.0.5",
"description": "A TypeScript finite state machine library",
"main": "dist/src/typedfsm.js",
"types": "dist/src/typedfsm.d.ts",
"scripts": {
"lint": "npx tslint -p .",
"lint-fix": "npx tslint -p . --fix",
"watch": "npx tsc -w",
"build": "npx tsc",
"test": "mocha -r ts-node/register test/**/*.ts",
"coverage": "npx nyc npm test && npx nyc report --reporter=text-lcov | codacy-coverage && nyc report --reporter=text-lcov | coveralls",
"coverage-local": "npx nyc npm test && npx nyc report --reporter=lcov"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/coverage/**",
"**/test/**",
"**/*.d.ts"
],
"require": "ts-node/register",
"extends": "@istanbuljs/nyc-config-typescript",
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/div-int/typedfsm.git"
},
"author": "Div Int Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/div-int/typedfsm/issues"
},
"homepage": "https://github.com/div-int/typedfsm#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"chai": "^4.2.0",
"codacy-coverage": "^3.4.0",
"coveralls": "^3.0.5",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"tsutils": "^3.14.1",
"typescript": "^3.5.3",
"typescript-tslint-plugin": "^0.5.4"
},
"dependencies": {},
"keywords": [
"typescript",
"FSM",
"WIP",
"DoNotUse"
]
}