-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.27 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
50
51
52
53
54
55
{
"name": "rxjs-fetch",
"version": "2.1.6",
"description": "RxJS-flavored version of HTTP fetch API for node.js (for RxJS 5.0+)",
"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/rxjs-fetch.git"
},
"keywords": [
"rx",
"rxjs",
"rxjs5",
"http",
"fetch"
],
"author": "tangledfruit <code@tangledfruit.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangledfruit/rxjs-fetch/issues"
},
"homepage": "https://github.com/tangledfruit/rxjs-fetch#readme",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"rxjs": ">=5.0.0-beta.6",
"url-parse": "^1.1.4"
},
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"coveralls": "^2.11.9",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"nock": "^8.0.0",
"rxjs-to-async-iterator": "^2.1.2",
"semistandard": "^9.0.0"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"engineStrict": true,
"semistandard": {
"globals": [
"before",
"describe",
"fetch",
"it"
]
}
}