-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.64 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
{
"name": "batchjs",
"version": "1.1.1",
"author": {
"name": "Pablo Alcaraz Martínez",
"url": "https://github.com/palcarazm/"
},
"funding": {
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/palcarazm"
},
"description": "Batch processing framework for NodeJS",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/@types",
"files": [
"dist",
"docs"
],
"scripts": {
"prepack": "npm run build",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build": "npm run build:cjs && npm run build:esm",
"build:watch": "tsc --build tsconfig.cjs.json --watch",
"docs": "npm run docs:common && npm run docs:streams",
"docs:common": "jsdoc2md --files ./src/common/**/*.ts --helper ./scripts/jsdoc2md/helpers.js --configure ./scripts/jsdoc2md/jsdoc2md.rc --template ./scripts/jsdoc2md/template-common.hbs > ./docs/common-api.md",
"docs:streams": "jsdoc2md --files ./src/streams/**/*.ts --helper ./scripts/jsdoc2md/helpers.js --configure ./scripts/jsdoc2md/jsdoc2md.rc --template ./scripts/jsdoc2md/template-streams.hbs > ./docs/streams-api.md",
"test": "jest --coverage",
"lint": "eslint ./src",
"prepare": "husky"
},
"keywords": [
"streams batch processing framework",
"batch processing framework",
"batch processing",
"streams processing",
"stream framework",
"batch",
"framework",
"streams"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/palcarazm/batchjs.git"
},
"bugs": {
"url": "https://github.com/palcarazm/batchjs/issues"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"commitlint": "^19.2.1",
"eslint": "^9.8.0",
"globals": "^15.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^9.0.5",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"exports": {
".": {
"types": "./dist/@types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./streams": {
"types": "./dist/@types/streams/index.d.ts",
"import": "./dist/esm/streams/index.js",
"require": "./dist/cjs/streams/index.js"
}
}
}