forked from GetStream/stream-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.86 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.86 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"author": {
"name": "Thierry Schellenbach",
"company": "Stream.io Inc"
},
"name": "getstream",
"description": "The official low-level GetStream.io client for Node.js and the browser.",
"main": "./lib/getstream.js",
"module": "./lib/getstream.js",
"types": "./types/getstream/index.d.ts",
"homepage": "https://getstream.io/docs?language=js",
"email": "support@getstream.io",
"license": "BSD-3-Clause",
"version": "4.4.0",
"scripts": {
"build": "babel src --out-dir lib",
"dtslint": "dtslint types/getstream",
"eslint": "eslint '**/*.js' --max-warnings 0",
"prettier": "prettier --list-different '**/*.{js,ts}'",
"lint": "npm run prettier && npm run eslint",
"lint-fix": "prettier --write '**/*.{js,ts}' && eslint --fix '**/*.js'",
"test": "npm run test-unit-node",
"test-unit-node": "mocha --require @babel/register test/unit/common test/unit/node",
"test-integration-node": "mocha --require @babel/register test/integration/common test/integration/node",
"test-cloud": "mocha --require @babel/register test/integration/cloud --timeout 40000",
"test-cloud-local": "LOCAL=true mocha --require @babel/register test/integration/cloud --timeout 40000 -i --grep 'Files|Images'",
"test-browser": "karma start karma.config.js",
"test-browser-ci": "karma start karma.ci.config.js",
"generate-docs": "jsdoc -c .jsdoc",
"coverage": "nyc --reporter=lcov mocha --require @babel/register bin/run-node-unit-tests.js",
"preversion": "npm run test-unit-node",
"version": "./bin/version.sh && git add dist",
"postversion": "./bin/postversion.sh"
},
"husky": {
"hooks": {
"pre-commit": "dotgit/hooks/pre-commit-format.sh && dotgit/hooks/pre-commit-reject-binaries.py"
}
},
"browser": {
"request": "@stream-io/xmlhttp-request",
"crypto": false,
"jsonwebtoken": false,
"./lib/lib/batch_operations.js": false,
"qs": false,
"url": false,
"http": false,
"https": false
},
"react-native": {
"request": "@stream-io/xmlhttp-request",
"crypto": false,
"jsonwebtoken": false,
"./lib/lib/batch_operations.js": false,
"qs": false,
"url": false
},
"config": {
"blanket": {
"pattern": "src",
"data-cover-never": [
"node_modules"
]
}
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-loader": "^8.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"crypto-browserify": "^3.12.0",
"dtslint": "^0.8.0",
"eslint": "^5.0.1",
"expect.js": "^0.3.1",
"husky": "^1.3.1",
"istanbul": "^0.4.5",
"json-loader": "~0.5.4",
"karma": "^3.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "~2.2.0",
"karma-sauce-launcher": "^1.2.0",
"karma-sourcemap-loader": "~0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.1.1",
"null-loader": "^0.1.1",
"nyc": "^12.0.2",
"prettier": "^1.13.7",
"testdouble": "^3.12.0",
"typescript": "^3.5.3",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.8.3",
"webpack-cli": "^3.0.8"
},
"dependencies": {
"@stream-io/cross-fetch": "^3.0.1",
"@stream-io/xmlhttp-request": "^0.4.0",
"Base64": "^1.0.1",
"faye": "^1.2.4",
"form-data": "^2.3.2",
"http-signature": "~1.2.0",
"jsonwebtoken": "^8.4.0",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.11",
"qs": "^6.5.1",
"request": "^2.88.0",
"whatwg-fetch": "^2.0.4"
},
"repository": {
"type": "git",
"url": "git://github.com/GetStream/stream-js.git"
},
"files": [
"dist",
"lib",
"types"
],
"engines": {
"node": "10.* || >=12"
}
}