forked from rasmusvhansen/rxjs-transducer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 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
{
"name": "rxjs-transducer",
"version": "1.1.1",
"description": "Transducer implementation leveraging RxJS operators to map, filter, reduce, take, skip on potentially infinite sequences",
"main": "dist/transducer.js",
"types": "dist/transducer.d.ts",
"scripts": {
"test:watch": "nodemon --ext ts --exec npm run test",
"test": "ts-node node_modules/jasmine/bin/jasmine",
"build": "tsc"
},
"files": [
"dist/transducer.d.ts",
"dist/transducer.js",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rasmusvhansen/rxjs-transducer.git"
},
"keywords": [
"transducer",
"rxjs",
"map",
"filter",
"reduce",
"take",
"skip",
"lazy",
"infinite",
"array",
"sequence"
],
"author": "Rasmus Vestergaard Hansen",
"license": "ISC",
"bugs": {
"url": "https://github.com/rasmusvhansen/rxjs-transducer/issues"
},
"homepage": "https://github.com/rasmusvhansen/rxjs-transducer#readme",
"devDependencies": {
"@types/jasmine": "^3.3.7",
"jasmine": "^3.3.1",
"nodemon": "^2.0.4",
"rxjs": "^6.3.3",
"ts-node": "^8.0.1",
"typescript": "^3.2.4"
},
"peerDependencies": {
"rxjs": "^6.3.3"
}
}