-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.43 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
53
54
55
56
57
{
"name": "m-ary-tree",
"version": "1.0.1",
"description": "A tree data structure",
"main": "dist/MAryTree.js",
"types": "dist/MAryTree.d.ts",
"repository": "git@github.com:jsakas/m-ary-tree.git",
"author": "Jon Sakas <jon.sakas@gmail.com>",
"license": "MIT",
"dependencies": {},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"test": "jest",
"lint": "eslint",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"docs": "typedoc"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-proposal-private-methods": "^7.16.11",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.11.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typedoc": "^0.23.8",
"typedoc-plugin-markdown": "^3.13.4",
"typescript": "^4.6.2"
},
"files": [
"dist",
"src",
"API.md"
],
"keywords": [
"tree",
"binary tree",
"ternary tree",
"n-ary tree",
"k-ary tree",
"m-ary treedd",
"data structures",
"preorder traversal",
"postorder traversal",
"inorder traversal",
"breadth first traversal",
"node positioning"
]
}