-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (64 loc) · 2.03 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
{
"version": "2.1.0",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.min.cjs",
"import": "./dist/index.js"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.min.cjs",
"module": "./dist/index.js",
"type": "module",
"name": "@masx200/async-task-current-limiter",
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-optional-catch-binding": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/node": "^18.0.0",
"acorn": "^8.7.1",
"browserslist": "^4.21.1",
"live-server": "^1.2.1",
"minimist": "^1.2.5",
"prettier": "^2.0.5",
"rollup": "^2.70.1",
"rollup-external-modules": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"serialize-javascript": "6.0.1",
"terser": "^5.13.1",
"tslib": "^2.3.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@masx200/event-emitter-target": "2.0.5"
},
"license": "MIT",
"scripts": {
"format": "prettier --write *.json *.md ./**/*.ts *.mjs */*.js",
"build": "rollup -c rollup.config.mjs ",
"test": "node ./test/index.js"
},
"keywords": [],
"author": "masx200 <34191203+masx200@users.noreply.github.com>",
"description": "异步任务限流器 async-task-current-limiter",
"repository": "https://github.com/masx200/async-task-current-limiter",
"packageManager": "yarn@3.2.0",
"resolutions": {
"glob-parent": "5.1.2"
}
}