-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
51
52
53
{
"name": "doubly-linky",
"version": "0.1.2",
"description": "A tiny (around 2.1 kb, 850 bytes gzipped) doubly linked list.",
"main": "./lib/index.js",
"module": "./lib/index.js",
"exports": {
".": {
"import": "./lib/index.js"
}
},
"files": [
"lib"
],
"type": "module",
"scripts": {
"dev": "node esbuild.build.mjs --watch",
"build": "tsc --project tsconfig.build.json && node esbuild.build.mjs",
"test": "jest",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run test"
},
"keywords": [
"doubly linked list",
"linked list",
"list",
"data structure",
"es6"
],
"author": "Vissie",
"license": "MIT",
"devDependencies": {
"@tsconfig/strictest": "^2.0.1",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"esbuild": "0.18.10",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "2.8.8",
"ts-jest": "^29.1.1",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.{mjs,ts}": [
"prettier --write --ignore-unknown",
"eslint --fix src"
]
}
}