-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
55 lines (55 loc) · 1.41 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
{
"name": "nest-schedule",
"version": "0.6.4",
"description": "Nest - modern, fast, powerful node.js web framework (@schedule)",
"author": "Miaowing <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json",
"precommit": "lint-staged",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish",
"test": "ts-node -r tsconfig-paths/register test/TestClient.ts"
},
"optionalDependencies": {
"@nestcloud/core": "^0.2.3"
},
"peerDependencies": {
"@nestjs/common": "^6.0.5",
"@nestjs/core": "^6.1.1"
},
"devDependencies": {
"@nestcloud/core": "^0.2.3",
"@nestjs/common": "^6.0.5",
"@nestjs/core": "^6.1.1",
"@types/lodash": "^4.14.108",
"@types/node": "^7.0.41",
"@types/node-schedule": "^1.2.3",
"@types/reflect-metadata": "^0.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"mocha": "^6.0.2",
"prettier": "^1.11.1",
"ts-node": "^6.0.0",
"tsconfig-paths": "^3.3.1",
"typescript": "^2.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miaowing/schedule.git"
},
"bugs": {
"url": "https://github.com/miaowing/schedule/issues"
},
"homepage": "https://github.com/miaowing/schedule#readme",
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"dependencies": {
"node-schedule": "^1.3.0",
"reflect-metadata": "^0.1.12"
}
}