-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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": "obs.remote.kefir",
"description": "OBS Remote WebSocket implementation based on Kefir streams and partial lenses",
"version": "2.1.2",
"main": "lib/socket.js",
"contributors": [
"Stefan Rimaila <stefan@rimaila.fi>"
],
"bugs": "https://github.com/stuf/obs.remote.kefir/issues",
"homepage": "https://github.com/stuf/obs.remote.kefir",
"repository": "github:stuf/obs.remote.kefir",
"keywords": [
"obs",
"reactive",
"kefir",
"partial lenses",
"websockets"
],
"license": "MIT",
"files": [
"lib"
],
"scripts": {
"test": "jest --config jest.config.js",
"lint": "eslint src/",
"precommit": "npm run lint",
"prepublish": "npm run lint && npm test",
"gen:docs": "sh scripts/generate_docs.sh"
},
"engines": {
"node": ">=7.0.0"
},
"dependencies": {
"debug": "^3.1.0",
"karet.util": "^0.17.2",
"kefir": "^3.8.0",
"partial.lenses": "^13.1.1",
"ramda": "^0.25.0",
"sanctuary": "^0.14.1",
"sanctuary-type-classes": "^7.2.0",
"ws": "^3.3.3"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-plugin-jest": "^21.5.0",
"husky": "^0.14.3",
"jest": "^22.0.4",
"sanctuary-def": "^0.14.0",
"shelljs": "^0.8.0",
"transcribe": "^1.0.0"
}
}