-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 823 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 823 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
26
27
28
29
30
31
{
"name": "filtermap",
"version": "1.0.0-rc.0",
"description": "Function to filter and map an array at the same time",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"type": "module",
"scripts": {
"prebuild": "rm -rf build/",
"build": "tsc",
"bench": "node --loader=ts-node/esm --no-warnings bench.ts",
"test": "mocha",
"lint": "eslint *.ts"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"benchmark": "^2.1.4",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"microtime": "^3.1.1",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}