-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.6 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.6 KB
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
{
"name": "bakeryjs",
"version": "1.0.0-alpha.1",
"description": "FBP-inspired data processing library for Node.js",
"main": "build/index.js",
"types": "build/index.d.ts",
"author": "Socialbakers <opensource@socialbakers.com>",
"contributors": [
"Milan Lepík <milan.lepik@socialbakers.com>",
"Jakub Slovan <jakub.slovan@socialbakers.com>",
"Martin Štekl <martin.stekl.external@socialbakers.com>",
"Jan Vlnas <jan.vlnas@socialbakers.com>"
],
"license": "MIT",
"files": [
"build/"
],
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Socialbakers/BakeryJS.git"
},
"dependencies": {
"ajv": "^8.17.1",
"debug": "^4.4.3",
"sb-jsnetworkx": "^0.3.6",
"verror": "^1.10.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@types/node": "^20.19.27",
"@types/verror": "^1.10.11",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.4.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jest": "^29.7.0",
"json5": "^2.2.3",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
},
"scripts": {
"start": "npm run build:live",
"build:live": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts all",
"build": "tsc -b tsconfig.build.json",
"build:watch": "tsc -b tsconfig.build.json --watch",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint src/ tests/ benchmarks/ profiling/",
"lint:fix": "eslint src/ tests/ benchmarks/ profiling/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"benchmarks/**/*.ts\" \"profiling/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"benchmarks/**/*.ts\" \"profiling/**/*.ts\"",
"typecheck": "tsc --noEmit",
"code-quality": "npm run format && npm run lint:fix && npm run typecheck",
"doc": "typedoc --out ./docs/ src/",
"benchmark": "ts-node --transpile-only benchmarks/run.ts",
"benchmark:simple": "ts-node --transpile-only benchmarks/run.ts --flow=simple",
"benchmark:complex": "ts-node --transpile-only benchmarks/run.ts --flow=complex",
"benchmark:verbose": "ts-node --transpile-only benchmarks/run.ts --verbose",
"profile": "ts-node --transpile-only profiling/run.ts",
"profile:analyze": "ts-node --transpile-only profiling/analyze.ts"
}
}