-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "@teamawesome/tiny-batch",
"version": "2.0.1",
"description": "Combine individual calls to a single one.",
"keywords": [
"batch",
"queue",
"combine",
"callback",
"dataloader"
],
"source": "./src/index.ts",
"main": "./dist/tiny-batch.js",
"module": "./dist/tiny-batch.module.js",
"unpkg": "./dist/tiny-batch.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle --no-compress",
"dev": "tsc --watch",
"lint": "eslint ./src --config ./eslint-src.config.mjs",
"lint:test": "eslint ./test --config ./eslint-test.config.mjs",
"test": "nyc mocha",
"format": "prettier . --write",
"prepublishOnly": "npm run lint && npx prettier . --check && npm run build && npm run test"
},
"author": "Tom Hooijenga <[email protected]>",
"homepage": "https://github.com/tomhooijenga/tiny-batch",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@sinonjs/fake-timers": "^13.0.2",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.12.0",
"microbundle": "^0.15.1",
"mocha": "^10.0.0",
"nyc": "^17.1.0",
"prettier": "^3.3.3",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^19.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
},
"dependencies": {
"globals": "^15.11.0"
}
}