-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 852 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": "mass",
"version": "2.0.6",
"description": "an universal data processing and task scheduling framework",
"main": "index.js",
"author": "ran <abbshrsoufii@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"ioredis": "^3.0.1",
"chance": "^1.0.16",
"cron-parser": "^2.5.0",
"p-queue": "^2.4.2",
"pino": "^5.5.0"
},
"scripts": {
"test": "jest --detectOpenHandles"
},
"jest": {
"verbose": true,
"notify": true,
"collectCoverage": true,
"testEnvironment": "node",
"modulePaths": [
"<rootDir>"
],
"roots": [
"<rootDir>/__specs__",
"<rootDir>/__mocks__"
],
"coverageReporters": [
"text",
"text-summary"
]
},
"devDependencies": {
"jest": "^23.4.1",
"p-event": "^2.1.0",
"pino-pretty": "^2.2.0"
}
}