-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 907 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
{
"name": "cron-es6",
"version": "1.0.3",
"description": "ES6 (ECMAScript 2015) node cron wrapper around https://www.npmjs.com/package/cron npm package.",
"main": "index.js",
"author": "Nemanja Petrovic <nempet.com>",
"license": "MIT",
"keywords": [
"cron",
"es6",
"node",
"node-cron",
"job",
"cronjob",
"cron-job",
"cron-job-es6",
"job-es6",
"cron-es6",
"node-cron-es6"
],
"dependencies": {
"cron": "^1.8.2"
},
"devDependencies": {
"semistandard": "14.2.3"
},
"scripts": {
"lint": "semistandard",
"lint-fix": "semistandard --fix"
},
"bugs": {
"url": "https://github.com/nemanjapetrovic/cron-es6/issues",
"email": "nempet@protonmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/nemanjapetrovic/cron-es6.git"
},
"homepage": "https://github.com/nemanjapetrovic/cron-es6/"
}