-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 939 Bytes
/
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
{
"name": "nodejs-priority-queue",
"version": "1.0.0",
"description": "This is a hobby project to create a NodeJS native plugin to support a `PriorityQueue` class in NodeJS. The goal of this work is learn more about how the V8 JavaScript engine works, and therefore all code is written to directly use V8's API (instead of any wrappers such as N-API).",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"jest": "^25.1.0"
},
"scripts": {
"test": "jest --rootDir ./test",
"install": "node-gyp rebuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northvankiwiguy/nodejs-priority-queue.git"
},
"author": "",
"license": "ISC",
"gypfile": true,
"bugs": {
"url": "https://github.com/northvankiwiguy/nodejs-priority-queue/issues"
},
"homepage": "https://github.com/northvankiwiguy/nodejs-priority-queue#readme"
}