-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.56 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.56 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@dsiu/rescript-graphology",
"version": "0.1.0",
"description": "Type-safe ReScript bindings for Graphology, a robust JavaScript graph library",
"type": "module",
"packageManager": "yarn@4.13.0",
"repository": {
"type": "git",
"url": "git+https://github.com/dsiu/rescript-graphology.git"
},
"homepage": "https://github.com/dsiu/rescript-graphology#readme",
"bugs": {
"url": "https://github.com/dsiu/rescript-graphology/issues"
},
"scripts": {
"build": "rescript build .",
"watch": "rescript watch .",
"clean": "rescript clean .",
"test": "jest",
"prepublishOnly": "yarn clean && yarn build && yarn test"
},
"files": [
"src/Graphology*.res",
"src/Graphology*.resi",
"src/Graphology*.res.mjs",
"rescript.json",
"README.md",
"LICENSE"
],
"keywords": [
"rescript",
"graphology",
"graph",
"network",
"data-structure",
"algorithms",
"shortest-path",
"dijkstra",
"bfs",
"dfs",
"traversal"
],
"author": "Danny Siu",
"license": "MIT",
"jest": {
"testMatch": [
"**/__tests__/*_Test.res.(js|ts|jsx|tsx|mjs)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
],
"transform": {
"^.+\\.m?jsx?$": [
"babel-jest",
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
]
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(rescript|@rescript/runtime|@glennsl/rescript-jest|@ryyppy/rescript-promise|re-fp|rescript-bag|@resinfo/parser|rescript-js|js-array2-ex|tablecloth-rescript|@dsiu/rescript-stdlib-fp|@dsiu/rescript-graphology|@greenlabs/garter|rescript-relude|rescript-bastet|rescript-relude-parse|)/)"
],
"moduleFileExtensions": [
"js",
"jsx",
"mjs"
]
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@glennsl/rescript-jest": "github:dsiu/rescript-jest#rescript-v12-wip",
"babel-jest": "^27.3.1",
"jest": "^27.3.1",
"rescript": "^12.2.0"
},
"dependencies": {
"graphology": "^0.26.0",
"graphology-generators": "^0.11.2",
"graphology-gexf": "^0.13.2",
"graphology-layout": "^0.6.1",
"graphology-shortest-path": "^2.1.0",
"graphology-simple-path": "^0.2.0",
"graphology-svg": "^0.1.3",
"graphology-traversal": "^0.3.1",
"graphology-types": "^0.24.0",
"rescript-nodejs": "^16.1.0"
}
}