-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 892 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 892 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
31
32
33
34
35
36
37
{
"name": "vanilla-priority-queue",
"version": "2.0.2",
"repository": "https://github.com/leekevinyg/js-priority-queue",
"description": "javascript implementation of a priority queue",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"coverage": "npm run test -- --coverage",
"build": "rm -rf dist && NODE_ENV=production babel src/ --no-comments --presets minify --out-dir dist --copy-files --ignore __tests__,spec.js,test.js"
},
"jest": {
"collectCoverageFrom": [
"src/index.js"
]
},
"keywords": [
"javascript",
"priority queue",
"queue",
"heap",
"heaps",
"algorithms",
"data structures"
],
"author": "Kevin Lee",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-minify": "^0.5.1",
"jest": "^26.0.1"
}
}