-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 KB
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
46
47
48
49
50
51
52
{
"name": "mapsort",
"description": "Performant sorting for complex input",
"version": "1.0.11",
"main": "compiled/cjs/mapsort.min.js",
"module": "compiled/esm/mapsort.min.js",
"unpkg": "compiled/iife/mapsort.min.js",
"types": "index.d.ts",
"files": [
"source",
"compiled",
"index.d.ts",
"copying.txt",
"readme-nl.md"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"babel-jest": "^30.2.0",
"babel-loader": "^10.0.0",
"babel-preset-minify": "^0.5.2",
"benchmark": "^2.1.4",
"jest": "^30.2.0",
"lodash": "^4.17.21",
"rollup": "^4.54.0",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"build-conceptual-benchmark": "webpack --config benchmarks/conceptual/webpack.config.js",
"test": "npm run-script build && jest && tsc --strict --noEmit --types \" \" test/type-test.ts",
"coverage": "TEST_TYPE=coverage jest --coverage"
},
"author": {
"name": "Nullhouse",
"url": "https://null.house"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pimm/mapsort.git"
},
"homepage": "https://null.house/open-source/mapsort",
"keywords": [
"performance",
"map",
"sort"
]
}