-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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": "benchmark",
"version": "1.0.0",
"description": "compare js-sdsl to other data structure package",
"main": "index.js",
"author": "ZLY201 <951711127@qq.com>",
"license": "MIT",
"scripts": {
"setup": "rm -rf node_modules && yarn install",
"lint": "eslint --fix --color --cache --max-warnings=0 .",
"dev": "NODE_ENV=development ts-node src/index.ts",
"test": "ttsc && NODE_ENV=development node dist/index.js",
"generate": "rm -rf docs && mkdir docs && touch docs/README.md && ttsc && NODE_ENV=production node dist/index.js",
"prepare": "husky install"
},
"dependencies": {
"benchmark": "^2.1.4",
"bintrees": "^1.0.2",
"denque": "^2.1.0",
"double-ended-queue": "^2.1.0-0",
"functional-red-black-tree": "^1.0.1",
"heap": "^0.2.7",
"heap-js": "^2.2.0",
"js-sdsl": "^4.4.0",
"mnemonist": "^0.39.2",
"tinyqueue": "^2.0.3",
"typescript-collections": "^1.3.3",
"yallist": "^4.0.0"
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint"
]
},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/bintrees": "^1.0.3",
"@types/double-ended-queue": "^2.1.1",
"@types/functional-red-black-tree": "^1.0.1",
"@types/heap": "^0.2.31",
"@types/node": "^18.7.1",
"@types/yallist": "^4.0.1",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"commitlint": "^17.0.3",
"eslint": "^8.21.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.13",
"typescript": "^4.7.4"
}
}