Skip to content

Commit 166906d

Browse files
🤖 chore: Lint configuration files.
These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/1b5252aec880aa76850f97b16980a6ce00c782c4/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent e6ee0fc commit 166906d

File tree

1 file changed

+47
-47
lines changed

1 file changed

+47
-47
lines changed

package.json

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,38 @@
22
"name": "@data-structures-and-algorithms/heapq",
33
"description": "Python's heap and priority queue library for JavaScript",
44
"version": "3.1.0",
5+
"license": "AGPL-3.0",
56
"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"
2511
},
2612
"bugs": {
2713
"url": "https://github.com/data-structures-and-algorithms/heapq/issues"
2814
},
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+
},
2937
"dependencies": {
3038
"@failure-abstraction/error": "^6.0.1",
3139
"@iterable-iterator/iter": "^1.0.1",
@@ -50,36 +58,28 @@
5058
"esdoc-inject-script-plugin": "1.0.0",
5159
"esdoc-inject-style-plugin": "1.0.0",
5260
"esdoc-standard-plugin": "1.0.0",
61+
"fixpack": "4.0.0",
5362
"np": "7.4.0",
54-
"nyc": "15.1.0",
55-
"fixpack": "4.0.0"
63+
"nyc": "15.1.0"
5664
},
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"
7474
},
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+
}
8484
}
8585
}

0 commit comments

Comments
 (0)