-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.23 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
{
"name": "doublylinked",
"description": "Doubly linked list implementation for JavaScript with iterator and array-like interface",
"version": "2.5.5",
"author": "Panates Ltd.",
"contributors": [
"Eray Hanoglu <[email protected]>"
],
"main": "lib/doubly-linked.js",
"types": "./lib/doubly-linked.d.ts",
"license": "MIT",
"repository": "panates/doublylinked",
"keywords": [
"javascript",
"doubly",
"linked",
"list",
"doubly linked list"
],
"devDependencies": {
"@panates/eslint-config": "^1.0.21",
"@panates/eslint-config-ts": "^1.0.21",
"@panates/tsconfig": "^1.0.21",
"@types/jest": "^29.5.14",
"husky": "^9.1.7",
"jest": "^29.7.0"
},
"engines": {
"node": ">= 10.0"
},
"directories": {
"lib": "./lib"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"scripts": {
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --max-warnings=0 --fix",
"format": "prettier . --write --log-level=warn",
"test": "jest",
"precover": "rimraf coverage",
"cover": "jest --runInBand --detectOpenHandles --coverage",
"precitest": "rimraf coverage",
"citest": "jest --coverage --coverageReporters=lcov",
"prepare": "husky"
}
}