-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 2.61 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "aws-scheduler",
"description":
"This package is responsible for adding up cron jobs to the queue when the time is due.",
"version": "1.0.3",
"main": "./dist/index.js",
"module": "./dist/index.js",
"license": "MIT",
"scripts": {
"build": "babel --ignore **__mocks__/*.js src --out-dir dist",
"build-watch": "babel --ignore **__mocks__/*.js src --out-dir dist -w",
"test": "jest"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"jest": true
},
"extends": ["airbnb", "prettier"],
"rules": {
"class-methods-use-this": 0,
"no-unused-vars": [
1,
{
"argsIgnorePattern": "res|next|^err"
}
],
"no-restricted-syntax": 0,
"no-await-in-loop": 0,
"import/prefer-default-export": 0,
"no-console": 0,
"consistent-return": 0
}
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 8
}
}
]
],
"plugins": [
"syntax-class-properties",
"transform-class-properties",
"transform-object-rest-spread",
"dynamic-import-node"
]
},
"dependencies": {
"aws-sdk": "^2.224.1",
"big-time": "^2.0.1",
"body-parser": "^1.18.2",
"common-tags": "^1.7.2",
"cron-parser": "^2.5.0",
"debug": "^3.1.0",
"esm": "^3.0.17",
"express": "^4.16.3",
"moment": "^2.22.1",
"sqs-consumer": "^3.8.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.3",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"jest": "^22.4.3",
"nodemon": "^1.17.3",
"prettier-eslint": "^8.8.1"
},
"jest": {
"testEnvironment": "node",
"verbose": true
},
"repository": {
"type": "git",
"url": "https://github.com/bermanboris/scheduler-cron-api.git"
},
"keywords": ["cron", "aws", "sqs"],
"author": "Boris Berman",
"bugs": {
"url": "https://github.com/bermanboris/scheduler-cron-api/issues"
},
"homepage": "https://github.com/bermanboris/scheduler-cron-api#readme"
}