-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.94 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.94 KB
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": "heapify",
"version": "1.0.2",
"description": "Blazing fast priority queue",
"repository": {
"type": "git",
"url": "git://github.com/luciopaiva/heapify.git"
},
"main": "heapify.js",
"browser": "heapify.js",
"module": "heapify.mjs",
"types": "heapify.d.ts",
"exports": {
".": {
"types": "./heapify.d.ts",
"import": "./heapify.mjs",
"require": "./heapify.js"
}
},
"scripts": {
"test": "vitest run --coverage",
"coverage": "vitest run --coverage",
"coverage:badge": "npm run coverage && node scripts/generate-coverage-badge.mjs",
"version:badge": "node scripts/generate-version-badge.mjs",
"loc": "cloc src/heapify.ts",
"loc:badge": "node scripts/generate-loc-badge.mjs",
"integration": "npm run build:prod && vitest run --config vitest.integration.config.ts",
"bench": "bash scripts/bench.sh",
"bench:publish": "bash scripts/bench.sh --publish",
"typecheck": "tsc --project tsconfig.check.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rm -fr dist",
"build": "npm run build:prod",
"build:dev": "npm run clean && vite build --mode development",
"build:prod": "npm run clean && vite build",
"watch": "vite build --watch"
},
"keywords": [
"priority queue",
"queue",
"heap",
"minheap",
"maxheap",
"binary heap",
"heapsort"
],
"author": {
"name": "Lucio Paiva",
"url": "https://luciopaiva.com"
},
"homepage": "https://github.com/luciopaiva/heapify",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/node": "^22.19.13",
"@vitest/coverage-v8": "^4.0.18",
"cloc": "^2.5.1",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"playwright": "^1.58.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
}
}