rx-polling
Version:
Polling library done with RxJS
58 lines (57 loc) • 1.28 kB
JSON
{
"name": "rx-polling",
"version": "1.1.0",
"description": "Polling library done with RxJS",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"lint": "tslint \"./index.ts\"",
"test": "jest",
"prepare": "npm run clean && npm run build",
"prepush": "npm run lint && npm test"
},
"repository": "https://github.com/jiayihu/rx-polling",
"keywords": [
"rxjs",
"polling",
"long-polling",
"network"
],
"author": "Jiayi Hu <jiayi.ghu@gmail.com>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/jest": "^19.2.2",
"@types/lodash": "^4.14.64",
"chalk": "^1.1.3",
"husky": "^0.13.3",
"jest": "^19.0.2",
"lodash": "^4.17.4",
"rimraf": "^2.6.1",
"rxjs": "^6.2.1",
"rxjs-tslint": "^0.1.4",
"ts-jest": "^19.0.8",
"tslint": "^5.0.0",
"typescript": "^2.9.2"
},
"peerDependencies": {
"rxjs": ">=5.5.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(test/.*\\.spec\\.(ts|js))$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}