-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 996 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 996 Bytes
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
{
"name": "fgraph",
"version": "0.0.2",
"description": "Functional / TypeScript implementation of Graph with 100% unit test coverage! All methods are pure and the data structures are immutable. It has build-in functional BFS.",
"main": "dist/graph.js",
"repository": {
"type": "git",
"url": "https://github.com/kolarski/fgraph.git"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "mocha dist/test -w"
},
"author": "Alex Kolarski <aleks.rk@gmail.com>",
"license": "MIT",
"keywords": [
"ramda",
"ramdajs",
"ramda.js",
"ramda js",
"graph",
"typescript",
"type script",
"functional",
"functional programming",
"BFS",
"Breath First Search"
],
"devDependencies": {
"@types/chai": "4.1.7",
"@types/mocha": "5.2.6",
"@types/node": "11.12.2",
"@types/ramda": "0.26.1",
"chai": "4.2.0",
"mocha": "6.0.2",
"typescript": "3.4.1"
},
"dependencies": {
"ramda": "0.26.1"
}
}