-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "task-scheduler-collection",
"version": "1.1.1",
"description": "A collection of different types of task scheduler",
"engines": {
"node": ">= 12.x"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^12.20.15",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"ava": "^3.15.0",
"eslint": "^7.29.0",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"native-promise-util": "^0.5.0",
"shx": "^0.3.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"scripts": {
"lint": "eslint *.cjs . || cd .",
"fix": "eslint --fix *.cjs . || cd .",
"prebuild": "shx rm -rf dist",
"build": "tsc",
"postbuild": "shx cp -r LICENSE package.json README.md dist/",
"test": "ava",
"release": "npm run build && shx rm -rf dist/test && cd dist && npm publish"
},
"license": "MIT",
"author": "VCD <[email protected]>",
"homepage": "https://github.com/VeryCrazyDog/task-scheduler-collection#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/VeryCrazyDog/task-scheduler-collection.git"
},
"bugs": {
"url": "https://github.com/VeryCrazyDog/task-scheduler-collection/issues"
},
"keywords": [
"scheduler",
"task"
]
}