-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.55 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
68
69
{
"name": "p-queue-ts",
"version": "1.2.0",
"description": "Priority Queue implemented using Heap",
"main": "dist/index.js",
"typings": "typing/priority-queue.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"benchmark-push": "ts-node ./benchmark/push",
"benchmark-pop": "ts-node ./benchmark/pop",
"prettier": "prettier --write ./src"
},
"files": [
"dist",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/davidnguyen179/p-queue-ts.git"
},
"bugs": {
"url": "https://github.com/davidnguyen179/p-queue-ts/issues"
},
"homepage": "https://github.com/davidnguyen179/p-queue-ts/blob/master/README.md",
"keywords": [
"priority queue",
"js module",
"heap",
"max heap",
"min heap",
"heapify",
"algorithm",
"typescript",
"javascript"
],
"author": "David Nguyen <[email protected]> ([email protected])",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^29.5.1",
"babel-jest": "^29.5.0",
"chalk": "^5.2.0",
"husky": "^4.2.5",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"prettier": "^2.0.4",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run prettier",
"git add"
]
},
"engines": {
"node": ">=8.0.0"
}
}