-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.89 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
79
{
"name": "yasetl",
"version": "1.0.0",
"engines": {
"node": ">=12.4.0"
},
"description": "Yet Another Simple ETL",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "cross-env LOG_ENABLED=false jest",
"debugtest": "cross-env LOG_ENABLED=true jest",
"npmcheck": "node node_modules/npm-check/bin/cli.js -u",
"lint": "eslint .",
"watch": "jest --watch"
},
"author": "stewart bonnick",
"license": "MIT",
"jest": {
"clearMocks": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"lcov",
"text"
],
"coverageDirectory": "coverage",
"verbose": false,
"watchPlugins": [
"jest-runner-eslint/watch-fix"
],
"projects": [
{
"displayName": "unit tests"
},
{
"runner": "jest-runner-eslint",
"displayName": "lint",
"testMatch": [
"<rootDir>/src/**/*.js",
"<rootDir>/test/**/*.js"
]
}
]
},
"dependencies": {
"@atlassian/jira": "^0.1.0",
"@types/jest": "^26.0.13",
"humanize-duration": "^3.23.1",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"moment": "^2.27.0",
"moment-weekday-calc": "^1.1.3",
"node-schedule": "^1.3.1",
"pg": "^8.3.3",
"pino": "^6.6.0",
"pino-pretty": "^4.2.1",
"sequelize": "^6.3.5",
"sqlite3": "^5.0.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-editorconfig": "^2.1.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2",
"jest-runner-eslint": "^0.10.0",
"npm-check": "^5.9.2",
"sequelize-mock": "^0.10.2",
"tmp": "^0.2.1"
}
}