-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.29 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
{
"name": "rxjs-node-stream",
"version": "1.1.1",
"description": "Set of utils which converts node readable streams from and to Rx.js",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/seidelmartin/rxjs-node-stream"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"prepack": "npm run build",
"test": "NODE_ENV=test mocha --opts mocha.opts",
"depcheck": "depcheck --ignores=@types/*,tslint*,pre-commit",
"coverage": "nyc mocha --opts mocha.opts"
},
"keywords": [
"rxjs",
"stream",
"node"
],
"author": "Martin Seidel",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/sinon": "^7.0.3",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"sinon": "^7.2.2",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"rxjs": "^6.3.3"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*"
],
"exclude": [
"src/index.ts",
"src/**/*.d.ts",
"src/**/*.spec.ts"
],
"reporter": [
"html"
],
"all": true
}
}