-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 619 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"author": "Florian Imdahl <git@ffflorian.de>",
"description": "A TypeScript QuickSort implementation",
"devDependencies": {
"rimraf": "6.0.1",
"typescript": "5.8.2",
"vitest": "3.1.1"
},
"files": [
"dist"
],
"license": "GPL-3.0",
"module": "dist/index.js",
"name": "quick-sort",
"private": true,
"repository": "https://github.com/ffflorian/node-packages/tree/main/packages/quick-sort",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rimraf dist",
"dist": "yarn clean && yarn build",
"test": "vitest run"
},
"type": "module",
"version": "0.9.5"
}