-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
{
"name": "nestjs-schedule",
"version": "0.1.7",
"description": "nestjs distributed timer schedule lib",
"author": "yanqic <[email protected]>",
"license": "MIT",
"keywords": [
"nestjs",
"schedule",
"distributed",
"cluster"
],
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.json",
"format": "prettier --write \"{lib,test}/**/*.ts\"",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish",
"test": "jest --config ./test/jest-e2e.json --runInBand"
},
"peerDependencies": {
"@nestjs/common": ">=7.0.0",
"@nestjs/core": ">=7.0.0"
},
"dependencies": {
"node-schedule": "^2.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": ">=7.0.0",
"@nestjs/core": ">=7.0.0",
"@nestjs/testing": "8.4.7",
"@types/jest": "28.1.3",
"@types/lodash": "^4.14.108",
"@types/node": "^17.0.26",
"@types/node-schedule": "^1.3.1",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.1",
"jest": "28.1.1",
"lint-staged": "^13.0.2",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com:yanqic/nest-schedule.git"
},
"bugs": {
"url": "https://github.com:yanqic/nest-schedule/issues"
},
"homepage": "https://github.com/yanqic/nest-schedule#readme",
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}