This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "chanjs-client",
"version": "0.1.0",
"description": "AsycnDataflow websocket browser client. By Bancolombia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "nyc mocha --reporter spec --reporter mocha-sonarqube-reporter --reporter-options output=coverage/xunit.xml --require source-map-support/register --require ts-node/register 'test/**/*.test.ts'",
"watch:build": "tsc --watch",
"sonar-scanner": "node_modules/sonar-scanner/bin/sonar-scanner",
"prepare": "npm run build",
"build": "tsc"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"coverage",
"dist",
"src/index.ts",
"**/*.d.ts",
"**/*.test.ts"
],
"reporter": [
"lcov"
],
"all": true
},
"keywords": [
"async",
"notifications",
"websocket"
],
"author": "Daniel Bustamante Ospina <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/mocha": "^5.2.5",
"@types/pusher-js": "^4.2.0",
"@types/sinon": "^5.0.3",
"chai": "^4.2.0",
"fast-text-encoding": "^1.0.3",
"fetch-mock": "^7.0.7",
"mocha": "^8.1.3",
"mocha-sonarqube-reporter": "^1.0.2",
"mock-socket": "^9.0.6",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"sinon": "^6.3.5",
"sonar-scanner": "^3.1.0",
"source-map-support": "^0.5.9",
"ts-mock-imports": "^1.2.1",
"ts-mockito": "^2.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-sonarts": "^1.8.0",
"typescript": "^3.1.1"
},
"dependencies": {}
}