This repository was archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
110 lines (110 loc) · 2.9 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
{
"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": "^6.26.0",
"group-by": "0.0.1",
"object-path": "^0.11.4",
"pseudo-worker": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"brfs": "^1.4.3",
"browserify": "^14.5.0",
"browserify-shim": "^3.8.14",
"child_process": "^1.0.2",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.10.0",
"flow-bin": "^0.56.0",
"flow-remove-types": "^1.2.3",
"growly": "^1.3.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-eslint": "^4.0.2",
"gulp-flowtype": "^1.0.0",
"gulp-prettier": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^4.3.11",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^1.7.1",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.1",
"karma-spec-reporter": "0.0.31",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"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"
}