-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1016 Bytes
/
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
{
"name": "stream-operators",
"version": "1.0.3",
"description": "A library for creating Readable, Writable and Transform stream which adopt two major tools in async world - Stream and Promise - with declarative programming approach.",
"main": "dist/index.js",
"homepage": "https://github.com/javadkh2/stream-operators",
"repository": {
"type": "git",
"url": "https://github.com/javadkh2/stream-operators"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"build": "tsc"
},
"keywords": [
"Stream",
"Promise",
"read",
"write",
"map",
"filter",
"reduce",
"fork",
"buffer",
"counter",
"delay",
"endWith",
"startWith",
"extract",
"from",
"inspect"
],
"author": "Javad Khalilian <khalilian.javad@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^11.13.0",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.4.1"
}
}