-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.38 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
{
"name": "scramjet",
"version": "4.37.0",
"description": "Lightweight and real-time data functional stream programming framework like event-stream, written in ES6 using async await with multi-threading and typescript support",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"doc": "docs",
"example": "samples",
"test": "test",
"types": ".d.ts"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/scramjetorg"
},
{
"type": "individual",
"url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=7F7V65C43EBMW"
}
],
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"index.js",
".d.ts",
"lib",
"docs"
],
"keywords": [
"stream",
"es6",
"es7",
"async",
"await",
"multithreaded",
"threads",
"transform",
"transmux",
"mux",
"merge",
"livedata",
"realtime",
"filter",
"map",
"apache",
"spark",
"apex",
"flink",
"highland",
"log",
"functional",
"ts",
"typescript",
"parser"
],
"scripts": {
"test": "gulp fulltest",
"quicktest": "gulp test",
"docs": "gulp docs",
"lint": "gulp lint",
"scm_clean": "gulp scm_clean",
"preversion": "gulp prerelease"
},
"homepage": "https://www.scramjet.org/",
"repository": {
"type": "git",
"url": "https://github.com/scramjetorg/framework-v4.git"
},
"engines": {
"node": ">=10.0.0"
},
"types": "./.d.ts/index.d.ts",
"author": "Scramjet <[email protected]>",
"license": "MIT",
"devDependencies": {
"@otris/jsdoc-tsd": "^3.0.0",
"@types/node": "^20.6.0",
"check-dts": "^0.7.2",
"decache": "^4.6.2",
"dmd": "^6.2.0",
"eslint": "^8.49.0",
"eslint-config-scramjet": "^3.0.0",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"gulp-jsdoc3": "^3.0.0",
"gulp-rename": "^2.0.0",
"gulp-shell": "^0.8.0",
"jsdoc": "^4.0.2",
"jsdoc-api": "^8.0.0",
"jsdoc-parse": "^6.2.0",
"node-fetch": "<3",
"nodeunit-tape-compat": "^1.3.80",
"replace-in-file": "^7.0.1",
"shelljs": "^0.8.5",
"tape": "^5.6.6",
"through2": "^4.0.2",
"typescript": "^5.2.2",
"vinyl": "^3.0.0"
},
"dependencies": {
"papaparse": "^5.4.1",
"rereadable-stream": "^1.4.14",
"scramjet-core": "^4.32.12"
}
}