-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "quick-avl",
"version": "0.1.0",
"description": "AVL tree: a self-balancing binary search tree",
"keywords": [
"avl",
"binary search tree",
"bst",
"self balancing",
"data structure"
],
"author": "Sander van Driel <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"bin": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/svandriel/quick-avl.git"
},
"homepage": "https://github.com/svandriel/quick-avl#quick-avl",
"scripts": {
"build": "tsc",
"clean": "rimraf dist coverage",
"test": "jest",
"dev": "tsc -w",
"start": "node dist/index.js",
"verify": "npm run test && npm run lint && npm run clean && npm run build",
"lint": "eslint \"src/**/*.ts\" && prettier \"**/*.{json,md}\" --check",
"fix": "eslint \"src/**/*.ts\" --fix && prettier \"**/*.{json,md}\" --write",
"version": "npm run verify",
"prepublishOnly": "npm run verify"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run verify"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
],
"**/*.json": [
"prettier --write"
]
},
"engines": {
"node": "^10||^12||^14||^15||^16||^17"
}
}