-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
30 lines (30 loc) · 881 Bytes
/
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
{
"name": "alfaaz",
"version": "1.1.0",
"description": "The fastest multilingual word counter that can count millions of words per second.",
"main": "dist/index.js",
"scripts": {
"test": "vitest run tests/",
"test:coverage": "vitest run tests/ --coverage",
"bench": "ts-node benches/lines.ts && ts-node benches/words.ts",
"build": "tsc",
"start": "ts-node src/index.ts",
"prepublishOnly": "npm run build"
},
"author": "Abdullah Atta <[email protected]>",
"repository": {
"url": "https://github.com/thecodrr/alfaaz",
"type": "git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.15.11",
"@types/paralleljs": "^0.0.21",
"@vitest/coverage-c8": "^0.30.1",
"markdown-table": "^2.0.0",
"tinybench": "^2.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
}
}