forked from atayahmet/storage-based-queue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
129 lines (129 loc) · 3.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "storage-based-queue",
"version": "1.2.6",
"description": "Simple client queue mechanism. Create it and run asynchronously with worker class in browser.",
"homepage": "https://github.com/atayahmet/storage-based-queue",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@babel/runtime-corejs3": "^7.20.7",
"braces": "^3.0.2",
"flow": "^0.2.3",
"group-by": "0.0.1",
"localforage": "^1.10.0",
"object-path": "^0.11.5",
"pseudo-worker": "^1.3.0",
"tunnel-agent": "^0.6.0"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-bind": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/plugin-proposal-pipeline-operator": "^7.18.9",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.19.0",
"@babel/plugin-transform-parameters": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-flow": "^7.18.6",
"@babel/register": "^7.18.9",
"babel-eslint": "^10.1.0",
"babel-plugin-istanbul": "^6.1.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"brfs": "^2.0.2",
"browserify": "^17.0.0",
"browserify-shim": "^3.8.16",
"child_process": "^1.0.2",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.26.0",
"flow-bin": "^0.152.0",
"flow-remove-types": "^2.196.3",
"growly": "^1.3.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-eslint": "^6.0.0",
"gulp-prettier": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"gulp-watch": "^5.0.1",
"jasmine": "^3.7.0",
"jasmine-core": "^3.7.1",
"karma": "^6.4.1",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "0.0.32",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-flow"
]
}
]
]
},
"scripts": {
"test": "karma start --browsers ChromeHeadless",
"test:watch": "karma start --no-single-run --auto-watch",
"coveralls": "cat ./coverage/html/headlesschrome/lcov.info | ./node_modules/.bin/coveralls",
"flow": "flow",
"gulp:process": "node_modules/.bin/gulp prettier-bundle minify-bundle prettier"
},
"nyc": {
"exclude": [
"**/test/**/*",
"lib/**/*",
"coverage/**/*",
"dist/**/*",
"flow-typed/**/*",
"interfaces/**/*",
"karma.conf.js",
"gulpfile.js",
"example.js"
],
"sourceMap": true,
"checkCoverage": true
},
"keywords": [
"async",
"persistent",
"queue",
"browser",
"client",
"priority",
"worker",
"jobs",
"offline",
"storage",
"channel"
],
"author": "Ahmet ATAY",
"license": "MIT"
}