UNPKG

@most/scheduler

Version:

Reactive programming with lean, functions-only, curried, tree-shakeable API

90 lines (89 loc) 2.31 kB
{ "name": "@most/scheduler", "version": "1.3.0", "description": "Reactive programming with lean, functions-only, curried, tree-shakeable API", "typings": "dist/index.d.ts", "main": "dist/index.js", "module": "dist/index.es.js", "files": [ "type-definitions", "dist" ], "scripts": { "test": "npm run test:lint && npm run test:unit && npm run test:flow", "test:unit": "cross-env NODE_ENV=test nyc mocha", "test:lint": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'", "test:flow": "flow check", "build": "npm run build:dist && npm run build:flow", "build:dist": "rollup -c", "build:flow": "cpy src/index.js.flow dist", "prepare": "npm run build" }, "repository": { "type": "git", "url": "https://github.com/mostjs/core" }, "keywords": [ "reactive", "reactive programming", "events", "event stream", "promise", "promises", "monad", "monadic", "functional", "async" ], "author": "brian@hovercraftstudios.com", "license": "MIT", "devDependencies": { "@briancavalier/assert": "^3.2.0", "@istanbuljs/nyc-config-typescript": "^1.0.0", "@types/mocha": "^5.2.7", "@typescript-eslint/eslint-plugin": "^1.11.0", "@typescript-eslint/parser": "^1.11.0", "cpy-cli": "^3.0.0", "cross-env": "^6.0.3", "eslint": "^6.1.0", "eslint-config-standard-with-typescript": "^8.0.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-node": "^11.0.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.0", "flow-bin": "^0.114.0", "mocha": "^6.1.4", "nyc": "^15.0.0", "rollup": "^1.6.0", "rollup-plugin-typescript2": "^0.25.2", "sinon": "^8.0.1", "ts-node": "^8.3.0", "typescript": "^3.5.2" }, "dependencies": { "@most/prelude": "^1.8.0", "@most/types": "^1.1.0" }, "standard": { "ignore": [ "test/perf", "test/flow" ], "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint/eslint-plugin" ] }, "nyc": { "extends": "@istanbuljs/nyc-config-typescript", "all": true, "reporter": [ "text-summary" ], "exclude": [ "dist/**", "coverage/**" ] }, "gitHead": "339e6debcbb817a3712df3a2b37c99b85f5f3d09" }