-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "@jymfony/datastructure",
"version": "0.1.0-dev",
"description": "Jymfony Data Structures",
"typings": "types/index.d.ts",
"scripts": {
"test": "node ./tests.js"
},
"keywords": [
"ds",
"data structure",
"btree",
"priority queue",
"jymfony"
],
"author": "Alessandro Chitolina <alekitto@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@jymfony/exceptions": "https://github.com/jymfony/exceptions.git",
"@jymfony/util": "https://github.com/jymfony/util.git"
},
"devDependencies": {
"@jymfony/autoloader": "https://github.com/jymfony/autoloader.git",
"@jymfony/debug": "https://github.com/jymfony/debug.git",
"@jymfony/testing": "https://github.com/jymfony/testing.git",
"chai": "^4.2",
"mocha": "^10.2"
},
"config": {
"jymfony-autoload": {
"includes": [
"index.js"
]
},
"jymfony-autoload-dev": {
"namespaces": {
"Jymfony.DataStructure.Tests": "test/"
}
}
}
}