-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 898 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 898 Bytes
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
{
"name": "priority-queue",
"type": "module",
"version": "1.0.0",
"description": "Store and manipulate lists of arbitrary items using accompanying numerical priority levels",
"exports": "priority-queue.js",
"scripts": {
"lint": "eslint --fix -- src/* test/*",
"test": "jest test/*"
},
"repository": {
"type": "git",
"url": "git+https://gist.github.com/6570bfd7333f867664d1f71bad6e93b9.git"
},
"author": "jm-janzen",
"license": "ISC",
"bugs": {
"url": "https://gist.github.com/6570bfd7333f867664d1f71bad6e93b9"
},
"homepage": "https://gist.github.com/6570bfd7333f867664d1f71bad6e93b9",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.3"
}
}