-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "@umajs/plugin-schedule",
"version": "1.0.0",
"description": "Umajs schedule plugin",
"author": "wangbin31",
"main": "lib/index.js",
"license": "ISC",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "[email protected]:fe/umajs-plugin-schedule.git"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"app": "ts-node-dev --respawn tests/app.ts"
},
"dependencies": {
"@umajs/logger": "^0.1.1",
"node-schedule": "^1.3.2",
"redlock": "^4.2.0"
},
"devDependencies": {
"@types/ioredis": "^4.17.8",
"@types/koa": "^2.0.48",
"@types/node-schedule": "^1.3.1",
"@types/redlock": "^4.0.1",
"@types/shelljs": "^0.8.7",
"@umajs/core": "^1.1.2",
"@umajs/router": "^1.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.14.0",
"ioredis": "^4.19.2",
"koa": "^2.11.0",
"shelljs": "^0.8.3",
"ts-node": "^8.8.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}