-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.4 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": "@supercharge/queue-datastructure",
"description": "A no-dependency, in-memory queue data structure for Node.js and JavaScript",
"version": "2.1.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/queue-datastructure/issues"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~4.0.0",
"@supercharge/tsconfig": "~7.0.0",
"c8": "~8.0.1",
"eslint": "~8.53.0",
"expect": "~29.7.0",
"typescript": "~5.2.2",
"uvu": "~0.5.6"
},
"files": [
"dist"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"types": "dist",
"homepage": "https://github.com/supercharge/queue-datastructure",
"keywords": [
"queue",
"data-structure",
"data-structures",
"supercharge",
"superchargejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/queue-datastructure.git"
},
"scripts": {
"build": "tsc",
"build:dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"list:tests": "jest --listTests",
"test": "npm run build && npm run lint && npm run test:run ",
"test:run": "c8 --include=dist uvu --ignore helpers",
"posttest": "c8 report --reporter=html"
}
}