-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"type": "commonjs",
"name": "SimpleQueue",
"license": "MIT",
"version": "1.0.0",
"description": "a simple fifo queue",
"author": "Felix Boehm <me@feedic.com>",
"funding": "https://github.com/sponsors/fb55",
"sideEffects": false,
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git://github.com/fb55/simplequeue.git"
},
"scripts": {
"build": "tsc",
"format": "npm run format:es && npm run format:biome",
"format:biome": "biome check --write .",
"format:es": "npm run lint:es -- --fix",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:biome",
"lint:biome": "biome check .",
"lint:es": "eslint .",
"lint:ts": "tsc --noEmit",
"prepare": "npm run build",
"test": "npm run test:jest && npm run lint",
"test:jest": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@eslint/compat": "^2.0.3",
"@feedic/eslint-config": "^0.3.1",
"@types/jest": "^29.5.14",
"@types/node": "^25.5.0",
"eslint": "^10.0.3",
"eslint-config-biome": "^2.1.3",
"jest": "^29.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
}
}