-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "merge-linked-lists",
"description": "Merges multiple sorted linked lists into one sorted linked list",
"author": "Eugene Yevhen Andruszczenko <[email protected]>",
"contributors": [
"32teeth <[email protected]> (https://github.com/32teeth)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/32teeth/merge-linked-lists.git"
},
"license": "CC-BY-SA-4.0",
"version": "0.0.6",
"keywords": [
"linked",
"list",
"merge",
"sort"
],
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"engines": {
"node": "20.x",
"npm": "10.x"
},
"main": "index.js",
"type": "module",
"scripts": {
"publish:npm": "npm publish --registry https://registry.npmjs.org/",
"publish:github": "npm publish --registry https://npm.pkg.github.com/",
"publish": "npm run publish:npm && npm run publish:github",
"test": "mocha"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.3"
},
"bugs": {
"url": "https://github.com/32teeth/merge-linked-lists/issues"
},
"homepage": "https://github.com/32teeth/merge-linked-lists/issues#readme",
"directories": {
"test": "test"
}
}