-
Notifications
You must be signed in to change notification settings - Fork 256
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "mongojs",
"description": "Easy to use module that implements the mongo api",
"keywords": [
"mongo",
"db",
"mongodb"
],
"version": "3.1.0",
"repository": "git://github.com/mongo-js/mongojs.git",
"author": "Mathias Buus Madsen <mathiasbuus@gmail.com>",
"license": "MIT",
"contributors": [
"Mathias Buus Madsen <mathiasbuus@gmail.com>",
"Ian Jorgensen",
"Eduardo Sorribas",
"Taeho Kim",
"Forbes Lindesay",
"Robert S.",
"Srirangan",
"Erkan Yilmaz",
"Jake Maskiewicz",
"Bjarke Walling",
"Tobias Baunbæk",
"Benedikt Arnold",
"Kevin McTigue",
"Thomas Watson Steen <w@tson.dk> https://twitter.com/wa7son"
],
"dependencies": {
"each-series": "^1.0.0",
"mongodb": "^3.3.2",
"once": "^1.4.0",
"parse-mongo-url": "^1.1.1",
"readable-stream": "^3.4.0",
"thunky": "^1.1.0",
"to-mongodb-core": "^2.0.0"
},
"scripts": {
"test": "standard && (tape \"test/test-*.js\" && node --harmony --harmony-proxies node_modules/tape/bin/tape \"test/test-*.js\") | tap-spec",
"cover": "nyc npm test",
"cover:report": "nyc report --reporter=lcov",
"cover:report:html": "nyc report --reporter=html",
"version": "auto-changelog -p --commit-limit false && git add CHANGELOG.md"
},
"devDependencies": {
"auto-changelog": "^1.16.1",
"concat-stream": "^2.0.0",
"nyc": "^14.1.1",
"standard": "^14.3.1",
"tap-spec": "^5.0.0",
"tape": "^4.11.0"
}
}