Skip to content

Commit 47477e9

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/8134808bd3e9bcbb3e4b2ca5401e2dee58965a01/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent 9b8517e commit 47477e9

File tree

1 file changed

+74
-74
lines changed

1 file changed

+74
-74
lines changed

package.json

Lines changed: 74 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,81 @@
22
"name": "@integer-sorting/radix-sort",
33
"description": "Radix sorting algorithms for JavaScript",
44
"version": "2.0.1",
5+
"license": "AGPL-3.0",
56
"author": "make-github-pseudonymous-again",
7+
"homepage": "https://integer-sorting.github.io/radix-sort",
8+
"repository": {
9+
"type": "git",
10+
"url": "https://github.com/integer-sorting/radix-sort"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/integer-sorting/radix-sort/issues"
14+
},
15+
"keywords": [
16+
"agpl",
17+
"algorithms",
18+
"javascript",
19+
"linear-time",
20+
"radix",
21+
"radix-sort",
22+
"radix-sort-algorithm",
23+
"sorting",
24+
"sorting-algorithms",
25+
"word-ram",
26+
"word-ram-model"
27+
],
28+
"sideEffects": false,
29+
"main": "lib/index.js",
30+
"files": [
31+
"lib"
32+
],
33+
"scripts": {
34+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
35+
"cover": "nyc --reporter=lcov npm test",
36+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
37+
"esdoc": "esdoc",
38+
"lint": "xo",
39+
"lint-config": "fixpack --dryRun",
40+
"lint-config-and-fix": "fixpack || fixpack",
41+
"prepare": "npm run build",
42+
"release": "np",
43+
"test": "ava",
44+
"travis": "npm run lint && npm run cover"
45+
},
46+
"dependencies": {
47+
"@combinatorics/permutation": "^4.0.0"
48+
},
49+
"devDependencies": {
50+
"@babel/cli": "7.16.0",
51+
"@babel/core": "7.16.5",
52+
"@babel/preset-env": "7.16.5",
53+
"@babel/register": "7.16.5",
54+
"@iterable-iterator/list": "^1.0.1",
55+
"@iterable-iterator/map": "^1.0.1",
56+
"@iterable-iterator/range": "^2.1.0",
57+
"@iterable-iterator/reduce": "^1.0.1",
58+
"@iterable-iterator/repeat": "^1.0.1",
59+
"@iterable-iterator/sorted": "^1.0.0",
60+
"@iterable-iterator/zip": "^1.0.1",
61+
"@randomized/random": "^4.0.0",
62+
"@total-order/lex": "^1.0.0",
63+
"@total-order/primitive": "^1.0.1",
64+
"ava": "^3.15.0",
65+
"babel-plugin-transform-remove-console": "6.9.4",
66+
"babel-plugin-unassert": "3.2.0",
67+
"babel-preset-power-assert": "3.0.0",
68+
"coveralls": "3.1.1",
69+
"esdoc": "1.1.0",
70+
"esdoc-inject-script-plugin": "1.0.0",
71+
"esdoc-inject-style-plugin": "1.0.0",
72+
"esdoc-standard-plugin": "1.0.0",
73+
"fixpack": "4.0.0",
74+
"np": "7.6.0",
75+
"nyc": "15.1.0",
76+
"power-assert": "1.6.1",
77+
"regenerator-runtime": "0.13.9",
78+
"xo": "0.36.1"
79+
},
680
"ava": {
781
"files": [
882
"test/src/**/*"
@@ -72,80 +146,6 @@
72146
}
73147
}
74148
},
75-
"bugs": {
76-
"url": "https://github.com/integer-sorting/radix-sort/issues"
77-
},
78-
"dependencies": {
79-
"@combinatorics/permutation": "^4.0.0"
80-
},
81-
"devDependencies": {
82-
"@babel/cli": "7.16.0",
83-
"@babel/core": "7.16.5",
84-
"@babel/preset-env": "7.16.5",
85-
"@babel/register": "7.16.5",
86-
"@iterable-iterator/list": "^1.0.1",
87-
"@iterable-iterator/map": "^1.0.1",
88-
"@iterable-iterator/range": "^2.1.0",
89-
"@iterable-iterator/reduce": "^1.0.1",
90-
"@iterable-iterator/repeat": "^1.0.1",
91-
"@iterable-iterator/sorted": "^1.0.0",
92-
"@iterable-iterator/zip": "^1.0.1",
93-
"@randomized/random": "^4.0.0",
94-
"@total-order/lex": "^1.0.0",
95-
"@total-order/primitive": "^1.0.1",
96-
"ava": "^3.15.0",
97-
"babel-plugin-transform-remove-console": "6.9.4",
98-
"babel-plugin-unassert": "3.2.0",
99-
"babel-preset-power-assert": "3.0.0",
100-
"coveralls": "3.1.1",
101-
"esdoc": "1.1.0",
102-
"esdoc-inject-script-plugin": "1.0.0",
103-
"esdoc-inject-style-plugin": "1.0.0",
104-
"esdoc-standard-plugin": "1.0.0",
105-
"np": "7.6.0",
106-
"nyc": "15.1.0",
107-
"power-assert": "1.6.1",
108-
"regenerator-runtime": "0.13.9",
109-
"xo": "0.36.1",
110-
"fixpack": "4.0.0"
111-
},
112-
"files": [
113-
"lib"
114-
],
115-
"homepage": "https://integer-sorting.github.io/radix-sort",
116-
"keywords": [
117-
"agpl",
118-
"algorithms",
119-
"javascript",
120-
"linear-time",
121-
"radix",
122-
"radix-sort",
123-
"radix-sort-algorithm",
124-
"sorting",
125-
"sorting-algorithms",
126-
"word-ram",
127-
"word-ram-model"
128-
],
129-
"license": "AGPL-3.0",
130-
"main": "lib/index.js",
131-
"repository": {
132-
"type": "git",
133-
"url": "https://github.com/integer-sorting/radix-sort"
134-
},
135-
"scripts": {
136-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
137-
"cover": "nyc --reporter=lcov npm test",
138-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
139-
"esdoc": "esdoc",
140-
"lint": "xo",
141-
"prepare": "npm run build",
142-
"release": "np",
143-
"test": "ava",
144-
"travis": "npm run lint && npm run cover",
145-
"lint-config-and-fix": "fixpack || fixpack",
146-
"lint-config": "fixpack --dryRun"
147-
},
148-
"sideEffects": false,
149149
"xo": {
150150
"prettier": true,
151151
"rules": {

0 commit comments

Comments
 (0)