-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 4.07 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 4.07 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
{
"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/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"homepage": "https://getstream.io/docs/?language=js",
"email": "support@getstream.io",
"license": "BSD-3-Clause",
"version": "8.15.0",
"scripts": {
"changelog": "standard-version --release-as $VERSION --skip.tag --skip.commit --tag-prefix=v",
"transpile": "babel src --out-dir lib --extensions '.ts'",
"types": "tsc --emitDeclarationOnly",
"build": "rm -rf lib && yarn run transpile && yarn run types",
"dist": "webpack && webpack --env minify",
"eslint": "eslint '**/*.{js,ts}' --max-warnings 0",
"prettier": "prettier --list-different '**/*.{js,ts}'",
"lint": "yarn run prettier && yarn run eslint",
"lint-fix": "prettier --write '**/*.{js,ts}' && eslint --fix '**/*.{js,ts}'",
"test": "yarn run test-unit-node",
"test-types": "tsc --skipLibCheck --target es2020 --esModuleInterop true --noEmit true test/typescript/*.ts",
"test-unit-node": "mocha --require tsx/cjs --require dotenv/config test/unit/common test/unit/node",
"test-integration-node": "mocha --require tsx/cjs --require dotenv/config test/integration/common test/integration/node --exit",
"test-cloud": "mocha --require tsx/cjs --require dotenv/config test/integration/cloud --timeout 40000 --exit",
"test-cloud-local": "LOCAL=true mocha --require tsx/cjs --require dotenv/config test/integration/cloud --timeout 40000 --ignore 'test/integration/cloud/{personalized_feed,files,images}.js'",
"test-browser": "karma start karma.config.js",
"prepare": "yarn run build",
"preversion": "yarn run test-unit-node",
"version": "yarn run dist && yarn run build && git add dist",
"postversion": "git push && git push --tags && npm publish"
},
"browser": {
"./lib/batch_operations.js": false,
"./lib/redirect_url.js": false,
"crypto": false,
"http": false,
"https": false,
"jsonwebtoken": false,
"url": false
},
"react-native": {
"crypto": false,
"jsonwebtoken": false,
"./lib/batch_operations.js": false,
"./lib/redirect_url.js": false,
"url": false
},
"devDependencies": {
"@babel/cli": "^7.29.7",
"@babel/core": "^7.29.7",
"@babel/eslint-parser": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@types/karma": "^6.3.9",
"@types/node": "^18.19.130",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-loader": "^9.2.1",
"chai": "^4.5.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-chai-friendly": "^0.7.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"expect.js": "^0.3.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "~2.2.5",
"karma-sourcemap-loader": "~0.4.0",
"karma-webpack": "^5.0.1",
"mocha": "^10.8.2",
"null-loader": "^4.0.1",
"prettier": "^3.9.6",
"standard-version": "^9.5.0",
"testdouble": "3.20.2",
"tsx": "^4.23.13",
"typescript": "^5.2.2",
"webpack": "^5.110.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/jsonwebtoken": "^9.0.10",
"axios": "^1.20.0",
"faye": "^1.4.1",
"form-data": "^4.0.6",
"jsonwebtoken": "^9.0.3",
"jwt-decode": "^4.0.0"
},
"peerDependencies": {
"@types/node": ">=10"
},
"repository": {
"type": "git",
"url": "git://github.com/GetStream/stream-js.git"
},
"files": [
"src",
"dist",
"types",
"lib"
],
"engines": {
"node": ">=18"
},
"keywords": [
"stream",
"get",
"get-stream",
"chat",
"notification",
"feed",
"stream.io",
"getstream"
],
"packageManager": "yarn@4.16.0"
}