Skip to content

Commit 6bc1dc5

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/efdeb14f1acc403bede2ec6bcff997fe7484cb4d/src/transforms/package.json:initial-lint.js Please contact the author of the transform if you believe there was an error.
1 parent a742c40 commit 6bc1dc5

File tree

1 file changed

+60
-60
lines changed

1 file changed

+60
-60
lines changed

package.json

Lines changed: 60 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,66 @@
22
"name": "@comparison-sorting/quick-sort",
33
"description": "Quicksort algorithm for JavaScript",
44
"version": "8.0.0",
5+
"license": "AGPL-3.0",
56
"author": "make-github-pseudonymous-again",
7+
"homepage": "https://comparison-sorting.github.io/quick-sort",
8+
"repository": {
9+
"url": "https://github.com/comparison-sorting/quick-sort",
10+
"type": "git"
11+
},
12+
"bugs": {
13+
"url": "https://github.com/comparison-sorting/quick-sort/issues"
14+
},
15+
"keywords": [
16+
"bricks",
17+
"ender",
18+
"javascript",
19+
"js",
20+
"quicksort",
21+
"sorting"
22+
],
23+
"sideEffects": false,
24+
"main": "lib/index.js",
25+
"files": [
26+
"lib"
27+
],
28+
"scripts": {
29+
"build": "babel --delete-dir-on-start --env-name production src -d lib",
30+
"cover": "nyc --reporter=lcov npm test",
31+
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
32+
"esdoc": "esdoc",
33+
"lint": "true",
34+
"lint-config": "fixpack --dryRun",
35+
"lint-config-and-fix": "fixpack || fixpack",
36+
"prepare": "npm run build",
37+
"release": "np",
38+
"test": "ava",
39+
"travis": "npm run lint && npm run cover"
40+
},
41+
"dependencies": {},
42+
"devDependencies": {
43+
"@babel/cli": "7.16.0",
44+
"@babel/core": "7.16.5",
45+
"@babel/polyfill": "7.12.1",
46+
"@babel/preset-env": "7.16.5",
47+
"@babel/register": "7.16.5",
48+
"@comparison-sorting/partition": "^10.0.0",
49+
"@comparison-sorting/specification": "^9.0.0",
50+
"ava": "^3.15.0",
51+
"babel-plugin-transform-remove-console": "6.9.4",
52+
"babel-plugin-unassert": "3.2.0",
53+
"babel-preset-power-assert": "3.0.0",
54+
"coveralls": "3.1.1",
55+
"esdoc": "1.1.0",
56+
"esdoc-inject-script-plugin": "1.0.0",
57+
"esdoc-inject-style-plugin": "1.0.0",
58+
"esdoc-standard-plugin": "1.0.0",
59+
"fixpack": "4.0.0",
60+
"np": "7.6.0",
61+
"nyc": "15.1.0",
62+
"power-assert": "1.6.1",
63+
"regenerator-runtime": "0.13.9"
64+
},
665
"ava": {
766
"require": [
867
"regenerator-runtime/runtime",
@@ -71,64 +130,5 @@
71130
"sourceMaps": "inline"
72131
}
73132
}
74-
},
75-
"bugs": {
76-
"url": "https://github.com/comparison-sorting/quick-sort/issues"
77-
},
78-
"dependencies": {},
79-
"devDependencies": {
80-
"@babel/cli": "7.16.0",
81-
"@babel/core": "7.16.5",
82-
"@babel/polyfill": "7.12.1",
83-
"@babel/preset-env": "7.16.5",
84-
"@babel/register": "7.16.5",
85-
"@comparison-sorting/partition": "^10.0.0",
86-
"@comparison-sorting/specification": "^9.0.0",
87-
"ava": "^3.15.0",
88-
"babel-plugin-transform-remove-console": "6.9.4",
89-
"babel-plugin-unassert": "3.2.0",
90-
"babel-preset-power-assert": "3.0.0",
91-
"coveralls": "3.1.1",
92-
"esdoc": "1.1.0",
93-
"esdoc-inject-script-plugin": "1.0.0",
94-
"esdoc-inject-style-plugin": "1.0.0",
95-
"esdoc-standard-plugin": "1.0.0",
96-
"np": "7.6.0",
97-
"nyc": "15.1.0",
98-
"power-assert": "1.6.1",
99-
"regenerator-runtime": "0.13.9",
100-
"fixpack": "4.0.0"
101-
},
102-
"files": [
103-
"lib"
104-
],
105-
"homepage": "https://comparison-sorting.github.io/quick-sort",
106-
"keywords": [
107-
"bricks",
108-
"ender",
109-
"javascript",
110-
"js",
111-
"quicksort",
112-
"sorting"
113-
],
114-
"license": "AGPL-3.0",
115-
"main": "lib/index.js",
116-
"repository": {
117-
"url": "https://github.com/comparison-sorting/quick-sort",
118-
"type": "git"
119-
},
120-
"scripts": {
121-
"build": "babel --delete-dir-on-start --env-name production src -d lib",
122-
"cover": "nyc --reporter=lcov npm test",
123-
"dev": "npm run lint -- --fix && npm run cover -- -- -st --fail-fast",
124-
"esdoc": "esdoc",
125-
"lint": "true",
126-
"prepare": "npm run build",
127-
"release": "np",
128-
"test": "ava",
129-
"travis": "npm run lint && npm run cover",
130-
"lint-config-and-fix": "fixpack || fixpack",
131-
"lint-config": "fixpack --dryRun"
132-
},
133-
"sideEffects": false
133+
}
134134
}

0 commit comments

Comments
 (0)