-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.49 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
{
"name": "scramjet-core",
"version": "4.32.12",
"description": "A pluggable minimal version of Scramjet that focuses only on stream transform and exposes only core features",
"main": "lib/index.js",
"directories": {
"lib": "lib/",
"doc": "docs/",
"test": "test/",
"example": "samples/"
},
"keywords": [
"stream",
"es6",
"transform",
"transmux",
"mux",
"live data",
"realtime",
"filter",
"map",
"apache",
"spark",
"apex",
"highland",
"log",
"functional programming",
"parser"
],
"scripts": {
"test": "npx gulp test",
"lint": "npx gulp lint",
"fix": "eslint --fix",
"preversion": "gulp prerelease"
},
"homepage": "https://www.scramjet.org/",
"repository": {
"type": "git",
"url": "https://github.com/scramjetorg/scramjet-core.git"
},
"engines": {
"node": ">=10.0.0"
},
"author": "Scramjet Sp z o.o. <open-source@scramjet.org>",
"license": "MIT",
"files": [
"LICENSE",
"CHANGELOG.md",
"README.md",
"index.js",
"jsdoc2md",
"lib",
"docs",
"scripts",
"test"
],
"devDependencies": {
"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-rename": "^2.0.0",
"jsdoc": "^4.0.2",
"jsdoc-api": "^8.0.0",
"jsdoc-parse": "^6.2.0",
"nodeunit-tape-compat": "^1.3.81",
"scramjet": "^4.36.9",
"tape": "^5.6.6"
}
}