-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "priority-task",
"version": "1.1.6",
"description": "Priority based task runner. ",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"watch": "tsc --watch",
"test": "jest --coverage",
"prepublish": "yarn build",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/mohasarc/priority-task.git"
},
"keywords": [
"npm",
"PriorityTask",
"PriorityScheduler",
"Scheduler",
"TaskRunner"
],
"sideEffects": false,
"author": "Mohammed S. Yaseen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mohasarc/priority-task/issues"
},
"homepage": "https://github.com/mohasarc/priority-task#priority-task",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"fastpriorityqueue": "^0.7.2"
}
}