UNPKG

rxjs-autorun

Version:

Autorun expressions with RxJS Observables

65 lines (64 loc) 2.01 kB
{ "name": "rxjs-autorun", "version": "0.0.2", "description": "Autorun expressions with RxJS Observables", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.js", "es2015": "./dist/es2015/index.js", "types": "./dist/types/index.d.ts", "unpkg": "./dist/rxjs-autorun.min.js", "sideEffects": false, "scripts": { "start": "webpack --config configs/webpack.dev.js", "clean": "rimraf temp dist", "build": "npm run build:esm && npm run build:es2015 && npm run build:cjs && npm run build:types && npm run build:umd && npm run build:umd:min", "build:esm": "tsc -p configs/tsconfig.esm.json", "build:es2015": "tsc -p configs/tsconfig.es2015.json", "build:cjs": "tsc -p configs/tsconfig.cjs.json", "build:types": "tsc -p configs/tsconfig.types.json", "build:umd": "webpack --config configs/webpack.build.js -o dist/rxjs-autorun.js", "build:umd:min": "webpack --config configs/webpack.build.min.js -o dist/rxjs-autorun.min.js", "test": "jest", "test:watch": "jest --watch", "test:debug": "node --inspect node_modules/.bin/jest --watch --runInBand", "np": "npm run clean && npm run build && np" }, "repository": { "type": "git", "url": "git+https://github.com/kosich/rxjs-autorun.git" }, "keywords": [ "autorun", "computed", "rxjs", "javascript", "typescript" ], "author": "Kostiantyn Palchyk", "license": "MIT", "bugs": { "url": "https://github.com/kosich/rxjs-autorun/issues" }, "homepage": "https://github.com/kosich/rxjs-autorun#readme", "devDependencies": { "@types/jest": "26.0.15", "jest": "26.6.3", "ts-jest": "26.4.4", "clean-webpack-plugin": "3.0.0", "prettier": "2.1.2", "rimraf": "3.0.2", "rxjs": "6.5.0", "ts-loader": "8.0.11", "typescript": "4.0.5", "webpack": "4.44.2", "webpack-cli": "3.3.12", "webpack-merge": "5.1.4", "np": "7.0.0" }, "peerDependencies": { "rxjs": "^6.5.0" }, "files": [ "dist" ] }