forked from GetStream/stream-node-orm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "getstream-node",
"version": "1.4.0",
"description": "Build newsfeeds and activity feeds on node.js using getstream.io",
"author": "getstream.io <[email protected]> (https://getstream.io/)",
"contributors": [
{
"name": "Mario Delgado",
"email": "[email protected]"
},
{
"name": "Thierry Schellenbach",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"main": "./src/index.js",
"dependencies": {
"async": ">=0.9.0",
"extend": ">=3.0.0",
"getstream": ">=3.5.0",
"istanbul": ">=0.3.13",
"mockery": ">=1.4.0",
"promise": ">=7.0.4",
"sinon": ">=1.14.1"
},
"devDependencies": {
"mongoose": ">=3.0.0",
"bson": ">=0.5.4",
"mocha": ">=1.20.1",
"should": ">=4.0.0",
"better-assert": ">=1.0.0"
},
"scripts": {
"test": "STREAM_URL='https://key:[email protected]/?app_id=42' NODE_ENV=test ./node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha test",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">=0.6.19"
},
"homepage": "http://getstream.io"
}