-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
56
57
58
{
"name": "rx-couch",
"version": "1.7.10",
"description": "RxJS-flavored APIs for CouchDB",
"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-couch.git"
},
"keywords": [
"couchdb",
"rx",
"rxjs",
"nosql"
],
"author": "tangledfruit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tangledfruit/rx-couch/issues"
},
"homepage": "https://github.com/tangledfruit/rx-couch#readme",
"devDependencies": {
"chai": "^3.5.0",
"co-mocha": "^1.1.3",
"coveralls": "^2.11.13",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"nock": "^8.0.0",
"rx-to-async-iterator": "^1.2.2",
"semistandard": "^9.0.0"
},
"dependencies": {
"deep-eql": "^1.0.0",
"deepmerge": "^1.1.0",
"rx": ">=4.0.7 <5",
"rx-fetch": "^1.3.4",
"shallow-copy": "^0.0.1"
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"engineStrict": true,
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"describe",
"fetch",
"it"
]
}
}