-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 2.82 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "concurrent-tasks",
"version": "3.0.2",
"description": "A simple task runner which will run tasks concurrently while maintaining limits.",
"author": "Samrith Shankar",
"license": "MIT",
"homepage": "https://concurrent-tasks.samrith.dev",
"repository": {
"type": "git",
"url": "https://github.com/samrith-s/concurrent-tasks.git"
},
"bugs": {
"url": "https://github.com/samrith-s/concurrent-tasks/issues/new/choose"
},
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "lib/dts/src/index.d.ts",
"source": "src/index.ts",
"react-native": "src/index.ts",
"files": [
"lib",
"LICENSE",
"README",
"src",
"!src/__tests__"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"bootstrap": "yarn install && yarn --cwd docs install",
"prepublishOnly": "yarn build",
"prebuild": "yarn clean",
"build": "NODE_ENV=production rollup -c rollup.config.js --bundleConfigAsCjs && size-limit",
"clean": "rm -rf lib/",
"test": "jest",
"lint": "eslint src/**/*.ts --cache",
"lint:docs": "eslint docs/**/*.ts --cache",
"prettify": "prettier --write {src,tests,docs}/**/*",
"docs": "yarn --cwd docs",
"release": "vite-node scripts/release",
"bench": "vite-node src/bench/benchmarks.ts"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@release-it/conventional-changelog": "^8.0.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@size-limit/preset-small-lib": "^11.0.1",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"builtin-modules": "^3.3.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"lefthook": "^1.8.2",
"prettier": "^3.1.0",
"release-it": "^15.7.0",
"rollup": "^4.6.1",
"rollup-plugin-typescript2": "^0.36.0",
"size-limit": "^11.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite-node": "^2.1.4",
"yocto-spinner": "^0.1.1"
},
"keywords": [
"concurrent",
"tasks",
"processes",
"threads",
"tasks",
"task",
"worker",
"process",
"run",
"concurrent tasks",
"react concurrent task",
"priority",
"queue",
"priority queue",
"fifo",
"scheduler",
"schedule task"
],
"packageManager": "[email protected]"
}