-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
46
47
48
49
50
51
52
{
"name": "mapsort",
"description": "Performant sorting for complex input",
"version": "1.0.10",
"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.25.2",
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-preset-minify": "^0.5.2",
"benchmark": "^2.1.4",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"rollup": "^4.21.2",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"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": "https://github.com/Pimm/mapsort.git"
},
"homepage": "https://null.house/open-source/mapsort",
"keywords": [
"performance",
"map",
"sort"
]
}