-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.87 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.87 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
{
"name": "rocket.chat.realtime.api.rxjs",
"version": "0.0.0-development",
"description": "Abstraction for Utilizing Rocket.Chat's Realtime API Methods with RxJS",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"rxjs": "^6.4.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/crypto-js": "^3.1.33",
"@types/jest": "^23.1.1",
"@types/uuid": "^3.0.0",
"codecov": "^3.2.0",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.6.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^23.1.0",
"mock-socket": "^7.1.0",
"prettier": "^1.16.1",
"pretty-quick": "^1.10.0",
"semantic-release": "^15.13.25",
"ts-jest": "^22.4.6",
"typescript": "^2.3.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"test": "jest --env=jsdom --notify",
"semantic-release": "semantic-release",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/inf3cti0n95/Rocket.Chat.RealTime.API.RxJS.git"
},
"keywords": [
"Rocket.Chat",
"RealTime API",
"RxJS",
"Observable",
"Abstraction"
],
"author": "Viraj Trivedi <inf3cti0n95@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inf3cti0n95/Rocket.Chat.RealTime.API.RxJS/issues"
},
"homepage": "https://github.com/inf3cti0n95/Rocket.Chat.RealTime.API.RxJS#readme",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/tests/*.+(ts|tsx|js)"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}