-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
117 lines (117 loc) · 2.96 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "adonis5-scheduler",
"version": "2.1.1",
"description": "This library provides an easy way to schedule recurring tasks for AdonisJS",
"scripts": {
"pretest": "npm run lint",
"test": "node japaFile.ts",
"dev": "tsc --watch",
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"build": "npm run compile",
"prepublishOnly": "npm run build",
"copy:files": "cpx 'templates/**' 'build/templates'",
"lint": "eslint . --ext=.ts --fix",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg2005/adonis5-scheduler.git"
},
"keywords": [
"AdonisJS",
"scheduler",
"cron",
"AdonisJS 5"
],
"author": "cmp08@ya.ru",
"license": "MIT",
"bugs": {
"url": "https://github.com/reg2005/adonis5-scheduler/issues"
},
"homepage": "https://github.com/reg2005/adonis5-scheduler#readme",
"devDependencies": {
"@adonisjs/ace": "^11.0.2",
"@adonisjs/core": "^5.1.8",
"@adonisjs/fold": "^8.1.3",
"@adonisjs/logger": "^4.0.3",
"@adonisjs/mrm-preset": "^4.1.0",
"@types/node": "^15.12.2",
"@types/node-schedule": "^1.3.1",
"@types/proper-lockfile": "^4.1.1",
"adonis-provider-tester": "git://github.com/VladyslavParashchenko/adonis-provider-tester.git#main",
"commitizen": "^4.2.4",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^3.0.1",
"doctoc": "^2.0.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-adonis": "^1.3.2",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"japa": "^3.1.1",
"mrm": "^3.0.2",
"np": "^7.5.0",
"npm-audit-html": "^1.5.0",
"pino-pretty": "^5.0.2",
"prettier": "^2.3.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"husky": {
"hooks": {
"pre-commit": "npm audit --production --json | ./node_modules/.bin/npm-audit-html && git add npm-audit.html && doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validateCommit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"main": "build/index.js",
"types": "build/adonis-typings/index.d.ts",
"typings": "build/adonis-typings/index.d.ts",
"files": [
"build/adonis-typings",
"build/providers",
"build/src",
"build/templates",
"build/commands"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"adonisjs": {
"commands": [
"adonis5-scheduler/build/commands"
],
"types": "adonis5-scheduler",
"providers": [
"adonis5-scheduler"
]
},
"dependencies": {
"@adonisjs/generic-exceptions": "^3.0.1",
"cron-time-generator": "^2.0.1",
"cronstrue": "^2.41.0",
"debug": "^4.3.4",
"ms": "^2.1.3",
"node-schedule": "^2.1.1",
"proper-lockfile": "^4.1.2"
}
}