-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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": "powerq",
"version": "1.0.0",
"description": "Effortless, prioritized async scheduling for JavaScript and TypeScript.",
"type": "commonjs",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "mocha --require ts-node/register --require test/setup.ts --extension ts --timeout 8000 \"test/**/*.test.ts\"",
"clean": "rimraf dist || rm -rf dist",
"lint": "eslint .",
"prettier": "prettier --write .",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^8.0.2",
"@types/mocha": "^10.0.10",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"eslint-config-prettier": "^10.1.8",
"mocha": "^11.0.0",
"nyc": "^17.1.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0"
},
"keywords": [
"priority",
"queue",
"scheduler",
"async",
"concurrency",
"typescript",
"promise"
],
"license": "MIT"
}