|
2 | 2 | "name": "@comparison-sorting/quick-sort",
|
3 | 3 | "description": "Quicksort algorithm for JavaScript",
|
4 | 4 | "version": "8.0.0",
|
| 5 | + "license": "AGPL-3.0", |
5 | 6 | "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 | + }, |
6 | 65 | "ava": {
|
7 | 66 | "require": [
|
8 | 67 | "regenerator-runtime/runtime",
|
|
71 | 130 | "sourceMaps": "inline"
|
72 | 131 | }
|
73 | 132 | }
|
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 | + } |
134 | 134 | }
|
0 commit comments