forked from janogonzalez/priorityqueuejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.51 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
54
55
56
57
58
59
60
61
62
63
{
"name": "bheap",
"version": "2.0.2",
"description": "a javascript binary heap implementation",
"author": "Xavier Garcia Buils <[email protected]>",
"scripts": {
"test": "npm run lint && npm run test-only && npm run check",
"test-only": "tape test/binaryheap_test.js",
"test-ci": "npm run lint && npm run check && npm run coveralls",
"coveralls": "npm run cov && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"cov": "nyc --reporter=lcov --require babel-register npm run test-only && nyc report",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"check": "npm-check -i pre-commit"
},
"devDependencies": {
"babel-register": "^6.26.0",
"coveralls": "^3.0.1",
"eslint": "^5.2.0",
"npm-check": "^5.7.1",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"tap-spec": "^5.0.0",
"tape": "^4.9.0"
},
"readmeFilename": "README.md",
"main": "index.js",
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/xgbuils/bheap.git"
},
"homepage": "https://github.com/xgbuils/bheap",
"bugs": {
"url": "https://github.com/xgbuils/bheap/issues"
},
"keywords": [
"heap",
"binary heap",
"priority",
"queue",
"priority queue",
"data structure"
],
"license": "MIT",
"saucelabs": {
"browsers": {
"internet explorer": [
"8",
"9",
"10",
"11"
],
"firefox": [
"35"
],
"chrome": [
"39",
"40"
]
}
}
}