-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
53
{
"name": "ribu",
"description": "A Concurrency Library for Javascript",
"version": "0.1.2",
"files": [
"source",
"test-utils"
],
"exports": {
".": {
"import": "./source/index.js"
},
"./test": {
"import": "./tests/test-utils.js"
}
},
"type": "module",
"scripts": {
"test": "clear; vitest --reporter=basic --no-cache --watch=false",
"test:watch": "clear; vitest -w --no-cache --reporter=basic",
"test:cov": "cross-env 'NODE_OPTIONS=--import @istanbuljs/esm-loader-hook --no-warnings' nyc npm test",
"type-check": "tsc --noEmit",
"build": "rm -rf dist; tsc"
},
"engines": {},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.4.1",
"eslint": "^9.15.0",
"eslint-plugin-functional": "^7.1.0",
"tsx": "^3.12.7",
"typescript": "^5.4.5",
"typescript-eslint": "^8.16.0",
"vitest": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rickmed/ribu"
},
"issues": "https://github.com/rickmed/ribu/issues",
"license": "MIT",
"author": {
"name": "Ricardo Medina"
},
"keywords": [
"concurrency",
"fast",
"js",
"javascript",
"typescript"
]
}