-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "js-data-structs",
"version": "2.0.0",
"description": "A library of data structures and algorithms",
"main": "dist/js-data-structs.cjs.js",
"module": "dist/js-data-structs.esm.js",
"browser": "dist/js-data-structs.umd.js",
"scripts": {
"prepare": "rollup -c && husky install",
"format": "prettier ./src/ --write && prettier ./test/ --write",
"format-check": "prettier --check ./src/ && prettier --check ./test/",
"lint": "eslint ./src/ && eslint ./test/",
"test": "jest --verbose --coverage ./test",
"docs": "npx documentation build src/main.js -f md -o docs/README.md"
},
"files": [
"dist"
],
"keywords": [
"js-datastructures",
"es6 data structures",
"javascript data structures",
"data structures",
"data structures javascript",
"data structures js",
"stack",
"es6 stack",
"queue",
"es6 queue",
"priority queue",
"priorityqueue",
"trees",
"binary trees",
"binary search tree",
"trie",
"bst",
"graph",
"es6 graph",
"directed graph",
"directedgraph",
"depth first search",
"breadth first search",
"dfs",
"bfs",
"power set",
"linked list",
"heap sort",
"z algorithm",
"topological sort",
"heaps algorithm"
],
"repository": {
"type": "git",
"url": "https://github.com/Aveek-Saha/js-data-structs.git"
},
"author": "Aveek Saha <aveek.s98@gmail.com>",
"homepage": "https://data-structs.netlify.com/",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-babel": "^5.2.1",
"documentation": "^13.2.5",
"jest": "^26.5.0",
"prettier": "^2.1.2",
"rollup": "^2.28.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"husky": "^7.0.0"
}
}