-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 KB
/
package.json
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "countingsort",
"version": "1.0.16",
"description": "Sort an array of integers using Counting sort (where you only have integers and the min and max are known)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"test": "jest src/__test__",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]/arnorhs/arnorhs-packages.git",
"directory": "pkg/countingsort"
},
"keywords": [
"sort",
"array",
"count",
"counting",
"countingsort",
"sort",
"countsort"
],
"devDependencies": {
"@babel/core": "*",
"@babel/preset-env": "*",
"@babel/preset-typescript": "*",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@types/jest": "*",
"@types/node": "^16.11.4",
"babel-jest": "*",
"bnch": "^1.0.16",
"jest": "*",
"rollup": "^2.58.0",
"rollup-plugin-ts": "^1.4.7",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"typescript": "4.4.4"
},
"author": "Arnor Heidar Sigurdsson <[email protected]> (https://arnorhs.dev/)",
"license": "MIT",
"readmeFilename": "README.md"
}