-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "priority-async-queue",
"version": "2.1.2",
"description": "A priority async queue plugin for node.js",
"main": "lib/index.js",
"scripts": {
"lint": "eslint --ext .js lib/ --ext .js test/",
"lintFix": "eslint --fix --ext .js lib/ --fix --ext .js test/",
"test": "jest test/*.test.js",
"build": "webpack --mode production",
"dev": "anywhere 8080"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Checkson/priority-async-queue.git"
},
"keywords": [
"priority",
"aysnc",
"queue",
"defer",
"task"
],
"engines": {
"node": ">=7.6.0"
},
"author": "Checkson",
"license": "MIT",
"bugs": {
"url": "https://github.com/Checkson/priority-async-queue/issues"
},
"homepage": "https://github.com/Checkson/priority-async-queue#readme",
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"unminified-webpack-plugin": "^3.0.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}