@wireapp/api-client 20.6.4 → 20.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +11 -26
package/package.json
CHANGED
|
@@ -21,10 +21,11 @@
|
|
|
21
21
|
"@babel/plugin-proposal-class-properties": "7.14.5",
|
|
22
22
|
"@babel/plugin-proposal-object-rest-spread": "7.14.7",
|
|
23
23
|
"@babel/plugin-proposal-optional-chaining": "7.14.5",
|
|
24
|
+
"@babel/preset-env": "^7.19.1",
|
|
24
25
|
"@babel/preset-react": "7.14.5",
|
|
25
26
|
"@babel/preset-typescript": "7.14.5",
|
|
26
|
-
"@types/
|
|
27
|
-
"@types/
|
|
27
|
+
"@types/babel__preset-env": "^7",
|
|
28
|
+
"@types/jest": "^29.0.3",
|
|
28
29
|
"@types/node": "^14.18.29",
|
|
29
30
|
"@types/spark-md5": "3.0.2",
|
|
30
31
|
"@types/tough-cookie": "4.0.1",
|
|
@@ -38,14 +39,7 @@
|
|
|
38
39
|
"cross-env": "7.0.3",
|
|
39
40
|
"dotenv": "10.0.0",
|
|
40
41
|
"istanbul": "1.1.0-alpha.1",
|
|
41
|
-
"
|
|
42
|
-
"karma": "6.4.1",
|
|
43
|
-
"karma-chrome-launcher": "3.1.1",
|
|
44
|
-
"karma-jasmine": "4.0.2",
|
|
45
|
-
"karma-jasmine-diff-reporter": "2.0.1",
|
|
46
|
-
"karma-sourcemap-loader": "0.3.8",
|
|
47
|
-
"karma-spec-reporter": "0.0.34",
|
|
48
|
-
"karma-webpack": "4.0.2",
|
|
42
|
+
"jest": "^29.0.3",
|
|
49
43
|
"nock": "13.1.1",
|
|
50
44
|
"nyc": "15.1.0",
|
|
51
45
|
"react": "18.1.0",
|
|
@@ -56,9 +50,6 @@
|
|
|
56
50
|
"sinon-har-server": "0.3.0",
|
|
57
51
|
"ts-node": "^10.9.1",
|
|
58
52
|
"typescript": "4.8.3",
|
|
59
|
-
"webpack": "4.46.0",
|
|
60
|
-
"webpack-cli": "4.7.2",
|
|
61
|
-
"webpack-dev-server": "3.11.2",
|
|
62
53
|
"ws": "7.5.3"
|
|
63
54
|
},
|
|
64
55
|
"description": "Wire API Client to send and receive data.",
|
|
@@ -73,23 +64,17 @@
|
|
|
73
64
|
"name": "@wireapp/api-client",
|
|
74
65
|
"repository": "https://github.com/wireapp/wire-web-packages/tree/main/packages/api-client",
|
|
75
66
|
"scripts": {
|
|
76
|
-
"build": "
|
|
77
|
-
"build:browser": "webpack --config ./webpack.browser.js",
|
|
78
|
-
"build:node": "tsc",
|
|
67
|
+
"build": "tsc",
|
|
79
68
|
"clean": "rimraf \"src/**/*.{js?(.map),d.ts}\"",
|
|
80
|
-
"coverage": "istanbul cover --report html ./node_modules/jasmine/bin/jasmine.js",
|
|
81
69
|
"demo:http401": "cross-env NODE_DEBUG='@wireapp/api-client*' ts-node src/demo/http401.ts",
|
|
82
70
|
"demo:self": "cross-env NODE_DEBUG='@wireapp/api-client*' ts-node src/demo/self.ts",
|
|
83
71
|
"dist": "yarn clean && yarn build",
|
|
84
|
-
"start": "
|
|
72
|
+
"start": "concurrently \"tsc -w\" \"webpack -w\" \"browser-sync start -c bs-config.js\"",
|
|
85
73
|
"start:node": "cross-env NODE_DEBUG='@wireapp*' node --inspect -r ts-node/register demo.ts",
|
|
86
|
-
"test": "
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"test:project": "yarn dist && yarn test",
|
|
90
|
-
"test:types": "tsc --noEmit",
|
|
91
|
-
"watch": "webpack serve --config webpack.browser.js"
|
|
74
|
+
"test": "jest",
|
|
75
|
+
"watch": "webpack serve --config webpack.browser.js",
|
|
76
|
+
"prepare": "yarn dist"
|
|
92
77
|
},
|
|
93
|
-
"version": "20.6.
|
|
94
|
-
"gitHead": "
|
|
78
|
+
"version": "20.6.5",
|
|
79
|
+
"gitHead": "6fe9b9fc73ef4d777bfa4e3a37e78d28a49ae099"
|
|
95
80
|
}
|