-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "mattermost-client",
"version": "6.5.0",
"description": "Mattermost client",
"module": "./src/client.js",
"main": "dist/mattermost-client.js",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"lint": "eslint src",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"prepublishOnly": "npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loafoe/mattermost-client.git"
},
"keywords": [
"mattermost",
"chat"
],
"author": "Andy Lo-A-Foe",
"license": "MIT",
"bugs": {
"url": "https://github.com/loafoe/mattermost-client/issues"
},
"homepage": "https://github.com/loafoe/mattermost-client#readme",
"dependencies": {
"extend": "^3.0.2",
"https-proxy-agent": "^7.0.0",
"log": "^6.1.0",
"request": "^2.88.0",
"set-value": ">=4.0.1",
"text-encoding": "^0.7.0",
"ws": "^8.6.0"
},
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^29.0.1",
"jest-sonar-reporter": "^2.0.0",
"webpack": "^5.35.0",
"webpack-cli": "^5.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}