-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 938 Bytes
/
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
{
"name": "declarative-linked-list",
"version": "1.0.0",
"description": "All ypu need to work with linked lists in a declarative and intuitive way with higher order functions like sort, map, filter and reduce etc.",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmanuelGustafzon/declarative-linked-list.git"
},
"keywords": [
"linked-list",
"higher-order-functions",
"declarative",
"functional",
"programming",
"doubly-Linked-List",
"head",
"insertion",
"map",
"reduce",
"forEach",
"filter",
"sort."
],
"author": "Emanuel Gustafzon",
"license": "ISC",
"bugs": {
"url": "https://github.com/EmanuelGustafzon/declarative-linked-list/issues"
},
"homepage": "https://github.com/EmanuelGustafzon/declarative-linked-list#readme",
"devDependencies": {
"jest": "^29.7.0"
}
}