This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
66 lines (66 loc) · 1.65 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
59
60
61
62
63
64
65
66
{
"name": "getstream-node",
"version": "2.0.0",
"description": "Build newsfeeds and activity feeds on node.js using getstream.io",
"author": "getstream.io <support@getstream.io> (https://getstream.io/)",
"email": "support@getstream.io",
"company": "Stream.io INC",
"contributors": [
{
"name": "Mario Delgado",
"email": "mariodel@gmail.com"
},
{
"name": "Thierry Schellenbach",
"email": "thierry@getstream.io"
},
{
"name": "Tommaso Barbugli",
"email": "tommaso@getstream.io"
},
{
"name": "Matthisk Heimensen",
"email": "matthisk@getstream.io"
},
{
"name": "Nick Parsons",
"email": "nparsons08@gmail.com"
}
],
"license": "BSD-3-Clause",
"main": "./src/index.js",
"dependencies": {
"async": "^3.2.0",
"extend": "^3.0.2",
"getstream": "^5.0.0",
"mongoose": "^5.9.23",
"promise": "^8.1.0"
},
"devDependencies": {
"better-assert": "~1.0.2",
"bson": "~1.0.4",
"coveralls": "~2.13.1",
"eslint": "~4.18.2",
"expect.js": "~0.3.1",
"glob": "~7.1.2",
"istanbul": "^0.4.5",
"jscs": "~3.0.7",
"mocha": "~3.5.0",
"mock-fs": "~4.4.1",
"mockery": "^2.1.0",
"pmock": "~0.2.3",
"rewire": "~2.5.2",
"should": "~11.2.1",
"sinon": "^3.2.1"
},
"scripts": {
"test": "STREAM_URL='https://key:secret@us-east.getstream.io/?app_id=42' NODE_ENV=test ./node_modules/.bin/mocha --timeout 30000 test test/**/*_test.js",
"coverage": "STREAM_URL='https://key:secret@us-east.getstream.io/?app_id=42' ./node_modules/.bin/istanbul cover bin/run-tests.js",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"engines": {
"node": "10 || 12 || >=14"
},
"homepage": "http://getstream.io"
}