-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.98 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.98 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": "@map-colonies/mc-priority-queue",
"version": "9.1.0",
"description": "This package handles tasks consuming from jobs manager",
"main": "./dist/index.js",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"test:unit": "jest --config=./tests/configurations/unit/jest.config.js",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "npm run test:unit",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepack": "npm run build",
"prepare": "husky",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/mc-priority-queue.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/mc-priority-queue/issues"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/MapColonies/mc-priority-queue#readme",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@map-colonies/eslint-config": "^6.0.0",
"@map-colonies/prettier-config": "0.0.1",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"commitlint": "^19.8.1",
"eslint": "^9.31.0",
"eslint-plugin-jest": "^28.11.0",
"husky": "^9.1.7",
"jest": "^30.0.4",
"jest-create-mock-instance": "2.0.0",
"jest-html-reporters": "^3.1.7",
"prettier": "^3.6.2",
"pretty-quick": "^4.2.2",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.7",
"typescript": "^5.8.3"
},
"peerDependencies": {
"@map-colonies/mc-utils": "^5.1.0"
},
"dependencies": {
"@map-colonies/types": "^1.9.0"
}
}