-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "rx-to-async-iterator",
"version": "1.2.3",
"description": "Convert RxJS Observable streams to async iterators",
"main": "index.js",
"scripts": {
"test": "semistandard && mocha",
"test-travis": "semistandard && ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangledfruit/rx-to-async-iterator.git"
},
"keywords": [
"RxJS",
"iterator",
"async"
],
"author": "tangledfruit",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangledfruit/rx-to-async-iterator/issues"
},
"homepage": "https://github.com/tangledfruit/rx-to-async-iterator#readme",
"dependencies": {
"rx": ">=4.0.7 <5"
},
"devDependencies": {
"chai": "^3.5.0",
"co": "^4.6.0",
"co-mocha": "^1.1.3",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"mocha": "^3.0.0",
"semistandard": "^9.0.0"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"engineStrict": true,
"semistandard": {
"globals": [
"before",
"describe",
"it"
]
}
}