-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "@boses/async-queue",
"version": "1.0.8",
"preview": false,
"license": "MIT",
"description": "Manage asynchronous queues",
"author": "boses",
"keywords": [
"async",
"queue"
],
"homepage": "https://github.com/bosens-China/async-queue",
"bugs": "https://github.com/bosens-China/async-queue/issues",
"repository": "https://github.com/bosens-China/async-queue",
"files": [
"dist"
],
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./dist/es/index.d.ts",
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"scripts": {
"lint": "tsc && eslint --ext .js,.ts src",
"fix": "eslint --fix --ext .js,.ts src",
"format": "prettier --write src",
"test": "jest",
"test-watch": "jest --watch",
"build": "rimraf ./dist && tsc -p tsconfig.build.json --outDir dist/es --module es6 && tsc -p tsconfig.build.json --declaration false"
}
}