-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 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
51
52
53
{
"name": "@mixmaxhq/adaptive-batch",
"version": "0.1.2",
"description": "An adaptive batch tool, which adjusts concurrency to a keyed async batch function in response to increased throughput.",
"main": "./dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"ci": "npm run lint && npm test",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/adaptive-batch.git"
},
"files": [
"dist"
],
"keywords": [
"batch",
"cache",
"adaptive",
"batched",
"concurrent",
"throughput",
"latency"
],
"author": "Eli Skeggs <eli@mixmax.com> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/adaptive-batch/issues"
},
"homepage": "https://github.com/mixmaxhq/adaptive-batch#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^4.11.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.8.0",
"prettier": "^1.17.1",
"rollup": "^1.12.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0"
},
"dependencies": {
"promise-callbacks": "^3.3.0"
}
}