-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 892 Bytes
/
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
{
"name": "ave-scheduler",
"version": "0.0.1",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"publish": "npm publish && echo \"Successfully released version $npm_package_version.\""
},
"files": [
"lib/**/*",
"types/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pestsov-v/ave-scheduler.git"
},
"author": "Vladyslav Pestsov <pestsov.js@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/pestsov-v/ave-scheduler/issues"
},
"homepage": "https://github.com/pestsov-v/ave-scheduler#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"@types/workerpool": "^6.1.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"workerpool": "^6.3.1"
}
}