forked from cmseaton42/task-easy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "task-easy",
"version": "0.2.0",
"description": "A simple, customizable, and lightweight priority queue for promise based tasks.",
"main": "./src/index.js",
"scripts": {
"test": "npm run lint && jest && npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:local": "npm run lint && jest && npm run test:coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:detailed": "jest --verbose",
"test:update": "jest -u",
"lint": "./node_modules/.bin/eslint . --ext .js",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"queue",
"task",
"worker",
"job",
"in-memory",
"priority",
"manager",
"utility",
"promise",
"Async"
],
"author": "Canaan Seaton",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-plugin-jest": "^21.15.1",
"jest": "^22.4.3"
},
"dependencies": {
"npm": "^6.0.0"
}
}