-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
{
"version": "2.0.0",
"scripts": {
"ci": "npm run build && npm run test && npm run check-exports",
"bench": "ts-node -O '{\"module\":\"commonjs\"}' benchmark",
"format": "xo --fix",
"test": "vitest run src && npm run format && npm run test-coverage",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov vitest src",
"prepublishOnly": "npm run ci",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"local-release": "changeset version && changeset publish",
"build": "tsc"
},
"license": "MIT",
"description": "A simple priority queue",
"repository": "https://github.com/craigdallimore/priority-queue#readme",
"bugs": {
"url": "https://github.com/craigdallimore/priority-queue/issues",
"email": "[email protected]"
},
"keywords": [
"priority-queue"
],
"files": [
"dist"
],
"type": "module",
"name": "@decoy9697/priority-queue",
"main": "dist/index.js",
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/naming-convention": "off",
"unicorn/prefer-module": "off",
"import/extensions": "off"
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@changesets/cli": "^2.27.12",
"@types/benchmark": "^2.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"benchmark": "^2.1.4",
"c8": "^10.1.3",
"prettier": "^3.4.2",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^5.7.3",
"xo": "^0.60.0"
},
"dependencies": {
"vitest": "^3.0.4"
}
}