|
2 | 2 | "name": "@data-structures-and-algorithms/heapq",
|
3 | 3 | "description": "Python's heap and priority queue library for JavaScript",
|
4 | 4 | "version": "3.1.0",
|
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "author": "make-github-pseudonymous-again",
|
6 |
| - "ava": { |
7 |
| - "require": [ |
8 |
| - "@babel/polyfill", |
9 |
| - "@babel/register" |
10 |
| - ], |
11 |
| - "files": [ |
12 |
| - "test/src/**/*" |
13 |
| - ], |
14 |
| - "timeout": "1m" |
15 |
| - }, |
16 |
| - "babel": { |
17 |
| - "presets": [ |
18 |
| - "@babel/preset-env" |
19 |
| - ], |
20 |
| - "env": { |
21 |
| - "development": { |
22 |
| - "sourceMaps": "inline" |
23 |
| - } |
24 |
| - } |
| 7 | + "homepage": "https://data-structures-and-algorithms.github.io/heapq", |
| 8 | + "repository": { |
| 9 | + "url": "https://github.com/data-structures-and-algorithms/heapq", |
| 10 | + "type": "git" |
25 | 11 | },
|
26 | 12 | "bugs": {
|
27 | 13 | "url": "https://github.com/data-structures-and-algorithms/heapq/issues"
|
28 | 14 | },
|
| 15 | + "keywords": [ |
| 16 | + "heap", |
| 17 | + "heapq", |
| 18 | + "javascript", |
| 19 | + "js", |
| 20 | + "priority", |
| 21 | + "queue" |
| 22 | + ], |
| 23 | + "main": "lib/index.js", |
| 24 | + "files": [ |
| 25 | + "lib" |
| 26 | + ], |
| 27 | + "scripts": { |
| 28 | + "build": "rm -rf lib && babel src -d lib", |
| 29 | + "cover": "nyc --reporter=lcov npm test", |
| 30 | + "esdoc": "esdoc", |
| 31 | + "lint-config": "fixpack --dryRun", |
| 32 | + "lint-config-and-fix": "fixpack || fixpack", |
| 33 | + "prepare": "npm run build", |
| 34 | + "release": "np", |
| 35 | + "test": "ava" |
| 36 | + }, |
29 | 37 | "dependencies": {
|
30 | 38 | "@failure-abstraction/error": "^6.0.1",
|
31 | 39 | "@iterable-iterator/iter": "^1.0.1",
|
|
50 | 58 | "esdoc-inject-script-plugin": "1.0.0",
|
51 | 59 | "esdoc-inject-style-plugin": "1.0.0",
|
52 | 60 | "esdoc-standard-plugin": "1.0.0",
|
| 61 | + "fixpack": "4.0.0", |
53 | 62 | "np": "7.4.0",
|
54 |
| - "nyc": "15.1.0", |
55 |
| - "fixpack": "4.0.0" |
| 63 | + "nyc": "15.1.0" |
56 | 64 | },
|
57 |
| - "files": [ |
58 |
| - "lib" |
59 |
| - ], |
60 |
| - "homepage": "https://data-structures-and-algorithms.github.io/heapq", |
61 |
| - "keywords": [ |
62 |
| - "heap", |
63 |
| - "heapq", |
64 |
| - "javascript", |
65 |
| - "js", |
66 |
| - "priority", |
67 |
| - "queue" |
68 |
| - ], |
69 |
| - "license": "AGPL-3.0", |
70 |
| - "main": "lib/index.js", |
71 |
| - "repository": { |
72 |
| - "url": "https://github.com/data-structures-and-algorithms/heapq", |
73 |
| - "type": "git" |
| 65 | + "ava": { |
| 66 | + "require": [ |
| 67 | + "@babel/polyfill", |
| 68 | + "@babel/register" |
| 69 | + ], |
| 70 | + "files": [ |
| 71 | + "test/src/**/*" |
| 72 | + ], |
| 73 | + "timeout": "1m" |
74 | 74 | },
|
75 |
| - "scripts": { |
76 |
| - "build": "rm -rf lib && babel src -d lib", |
77 |
| - "cover": "nyc --reporter=lcov npm test", |
78 |
| - "esdoc": "esdoc", |
79 |
| - "prepare": "npm run build", |
80 |
| - "release": "np", |
81 |
| - "test": "ava", |
82 |
| - "lint-config-and-fix": "fixpack || fixpack", |
83 |
| - "lint-config": "fixpack --dryRun" |
| 75 | + "babel": { |
| 76 | + "presets": [ |
| 77 | + "@babel/preset-env" |
| 78 | + ], |
| 79 | + "env": { |
| 80 | + "development": { |
| 81 | + "sourceMaps": "inline" |
| 82 | + } |
| 83 | + } |
84 | 84 | }
|
85 | 85 | }
|
0 commit comments