-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 973 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 973 Bytes
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
{
"name": "timequeue",
"description": "A queue with custom concurrency and time limits.",
"keywords": [
"queue",
"flow",
"time"
],
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "git://github.com/fent/timequeue.js.git"
},
"author": "fent <fentbox@gmail.com> (https://github.com/fent)",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"test": "nyc --extension .ts --reporter=lcov --reporter=text-summary npm run test:unit",
"test:unit": "mocha -- --require ts-node/register test/*-test.ts"
},
"devDependencies": {
"@types/mocha": "^7.0.0",
"@types/node": "^13.1.6",
"@types/sinon": "^9.0.8",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"sinon": "^9.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}