-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.05 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
{
"name": "promisecommandqueue",
"version": "0.1.6",
"description": "A fairly simple command queue that ensures both commands containing sync code and commands containing async code are executed in sequence, through promises chaining.",
"main": "./dist/commandQueue.js",
"types": "./dist/commandQueue.d.ts",
"scripts": {
"build": "tsc -p tsconfig.compile.json",
"test:remote": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest"
},
"author": "Oscar Yu",
"repository": {
"type": "git",
"url": "https://github.com/YSZhuoyang/promise-command-queue"
},
"license": "MIT",
"homepage": "https://github.com/YSZhuoyang/promise-command-queue/#README",
"bugs": {
"url": "https://github.com/YSZhuoyang/promise-command-queue/issues"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"coveralls": "^3.1.1",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
}
}