-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
79 lines (79 loc) · 1.63 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
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": "pubnub-react",
"version": "3.0.2",
"description": "Publish & Subscribe Real-time Messaging with PubNub",
"author": "PubNub <[email protected]>",
"main": "dist/index.js",
"module": "dist/pubnub-react.esm.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/pubnub/react.git"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --env=jsdom",
"lint": "tsdx lint"
},
"keywords": [
"cloud",
"publish",
"subscribe",
"websockets",
"comet",
"bosh",
"xmpp",
"real-time",
"messaging"
],
"license": "MIT",
"peerDependencies": {
"@types/pubnub": "^7.0.0",
"pubnub": "^7.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.0",
"@testing-library/react": "^9.1.3",
"@types/jest": "^26.0.0",
"@types/pubnub": "^7.0.0",
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"husky": "^3.0.2",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"pubnub": "^7.0.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"tsdx": "^0.14.1",
"tslib": "^1.10.0",
"typescript": "^3.8.0"
},
"dependencies": {
"ts-invariant": "^0.10.3"
},
"overrides": {
"jest": "^26.0.0",
"ts-jest": "^26.0.0"
},
"jest": {
"testMatch": [
"<rootDir>/**/*.(spec|test).{ts,tsx}"
]
}
}