-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "reactive-graph",
"version": "1.0.0",
"description": "Convert Graphlib graphs to observable networks",
"keywords": [
"reactive",
"frp",
"Rx",
"RxJS",
"bacon",
"bacon.js",
"Observable",
"graph",
"graphlib",
"kefir",
"kefir.js",
"stream",
"streams"
],
"author": "AndSelm <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:FunkMonkey/reactive-graph.git"
},
"homepage": "https://github.com/FunkMonkey/reactive-graph",
"bugs": {
"url": "https://github.com/FunkMonkey/reactive-graph/issues"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "gulp build",
"watch:build": "gulp watch:build"
},
"devDependencies": {
"@typescript-eslint/parser": "2.0.0",
"@typescript-eslint/eslint-plugin": "2.20.0",
"eslint": "6.8.0",
"eslint-config-funkmonkey": "2.1.0",
"eslint-plugin-import": "2.20.1",
"gulp": "4.0.0",
"gulp-babel": "8.0.0",
"gulp-typescript": "5.0.0",
"typescript": "3.2.2"
},
"dependencies": {
"graphlib": "2.1.0"
}
}