-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·36 lines (36 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "pollify",
"version": "1.0.2",
"description": "Produces a stream of events by polling a provided function at a given rate. This rate is the minimum rate, not the exact rate (similar to setTimeout). The provided function is only polled when the previous execution has completed. This has the effect of making async calls execute in series.",
"main": "index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore . --cache",
"pretest": "npm run lint",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter spec --recursive test/",
"posttest": "istanbul check-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lobabob/eventstream.git"
},
"keywords": [
"event",
"poll",
"stream",
"rate",
"interval"
],
"author": "Farhankhan Daya",
"license": "ISC",
"bugs": {
"url": "https://github.com/lobabob/eventstream/issues"
},
"homepage": "https://github.com/lobabob/eventstream#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.16.1",
"eslint-plugin-promise": "^3.4.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}