-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
72 lines (72 loc) · 1.95 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
{
"name": "dcrf-client",
"version": "1.1.0",
"description": "Websocket client for Django Channels v2 APIs powered by hishnash/djangochannelsrestframework",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "npm run test:unit; npm run test:integration",
"test:unit": "mocha",
"test:integration": "pipenv run py.test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theY4Kman/dcrf-client.git"
},
"keywords": [
"django",
"channels",
"websocket",
"client"
],
"author": "Zach \"theY4Kman\" Kanzler",
"contributors": [
"Sandro Salles (https://github.com/sandro-salles)",
"Joel Hillacre (https://github.com/jhillacre)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/theY4Kman/dcrf-client/issues"
},
"homepage": "https://github.com/theY4Kman/dcrf-client#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/register": "^7.4.0",
"@types/chai": "^4.1.7",
"@types/chai-subset": "^1.3.2",
"@types/deasync": "^0.1.0",
"@types/lodash.ismatch": "^4.4.6",
"@types/lodash.pull": "^4.1.6",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"@types/sinon": "^7.0.10",
"@types/sinon-chai": "^3.2.2",
"@types/ws": "^6.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"deasync": "^0.1.14",
"flush-promises": "^1.0.2",
"mocha": "^8.2.1",
"sinon": "^7.3.1",
"sinon-chai": "^3.3.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.7.7",
"ws": "^6.2.0"
},
"dependencies": {
"@types/lodash.uniqby": "^4.7.6",
"autobind-decorator": "^2.4.0",
"lodash.ismatch": "^4.4.0",
"lodash.pull": "^4.1.0",
"lodash.uniqby": "^4.7.0",
"reconnecting-websocket": "^4.4.0",
"winston": "^3.3.3"
}
}