-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 937 Bytes
/
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
{
"name": "qew",
"version": "0.11.2",
"description": "Queue asynchronous functions",
"source": "qew.ts",
"main": "dist/qew.js",
"module": "dist/qew.mjs",
"unpkg": "dist/qew.umd.js",
"types": "dist/qew.d.ts",
"scripts": {
"start": "microbundle watch",
"build": "microbundle",
"watch": "tsc -w",
"prepublish": "yarn build",
"test": "jest"
},
"keywords": [
"queue",
"async",
"throttle",
"promise"
],
"author": {
"name": "Aron Adler",
"email": "[email protected]",
"url": "https://adler.dev/"
},
"license": "MIT",
"repository": "github:Arrow7000/qew",
"packageManager": "[email protected]",
"devDependencies": {
"@sinonjs/fake-timers": "^9.1.2",
"@types/jest": "^28.1.6",
"@types/node": "^18.6.1",
"@types/sinonjs__fake-timers": "^8.1.2",
"jest": "^28.1.3",
"microbundle": "^0.15.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
}
}