UNPKG

most-from-array

Version:
66 lines (65 loc) 2.04 kB
{ "name": "most-from-array", "description": "Creates a mostjs stream from an array", "version": "1.0.3", "main": "lib/index.js", "module": "lib.es2015/index.js", "jsnext:main": "lib.es2015/index.js", "typings": "lib/index.d.ts", "license": "MIT", "author": "Sergey Samokhov <hi@hoichi.io> (https://hoichi.io)", "homepage": "https://github.com/mostjs-community/most-from-array#readme", "bugs": { "url": "https://github.com/mostjs-community/most-from-array/issues" }, "repository": { "type": "git", "url": "git+https://github.com/mostjs-community/most-from-array.git" }, "keywords": [ "most", "mostjs", "reactive", "event", "async", "stream" ], "scripts": { "build": "npm run build:commonjs && npm run build:es2015 && npm run build:umd", "build:commonjs": "./node_modules/.bin/tsc -P cfg/tsconfig.commonjs.json", "build:es2015": "./node_modules/.bin/tsc -P cfg/tsconfig.es2015.json", "build:umd": "mkdir -p dist && rollup -c --name 'from-event' && uglifyjs dist/most-from-array.js -o dist/most-from-array.min.js", "prepublish": "npm run build", "preversion": "npm run build", "test": "npm run test:lint && npm run test:unit", "test:lint": "./node_modules/.bin/tslint -p tsconfig.json -c tslint.json 'src/*.ts'", "test:unit": "./node_modules/.bin/mocha -r ts-node/register src/*.test.ts" }, "dependencies": { "@most/scheduler": "^1.2.0" }, "devDependencies": { "@most/core": "^1.3.0", "@most/types": "^1.0.0", "@types/mocha": "^5.2.0", "@types/node": "^9.6.6", "@types/power-assert": "^1.5.0", "mocha": "^3.4.2", "power-assert": "^1.5.0", "rollup": "^0.58.2", "rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-typescript2": "^0.13.0", "ts-node": "^6.0.0", "tslint": "^5.9.1", "tslint-config-standard": "^7.0.0", "typescript": "^2.9.2", "uglify-js": "^3.0.14" }, "files": [ "dist", "lib" ], "peerDependencies": { "@most/core": "^1.2.3" } }