This repository has been archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
103 lines (103 loc) · 2.9 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
{
"name": "rxjs-stream",
"version": "5.0.0",
"description": "nodejs streams for rxjs 7",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "npm run check-spelling && eslint . --fix",
"lint-travis": "npm run check-spelling && eslint .",
"check-spelling": "cspell \"src/**\" \"*.md\" \"samples/**\"",
"build": "npm run compile",
"clean": "rimraf ./dist",
"clean-build": "npm run clean && npm run build",
"compile": "tsc -p .",
"watch": "tsc --watch -p .",
"tsc": "tsc -p .",
"coverage": "npm run generate-code-coverage",
"generate-code-coverage": "NODE_ENV=test nyc npm run test-ts",
"test-ts": "NODE_ENV=test mocha --require ts-node/register --recursive --bail \"src/**/*.test.ts\"",
"test-watch": "npm run build && mocha --require ts-node/register --watch --recursive \"src/**/*.test.ts\"",
"prepare": "npm run clean-build",
"prepublishOnly": "npm test",
"coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
"release": "npx standard-version",
"travis-coverage": "npm run generate-code-coverage && npm run coverage-coveralls",
"test": "mocha --recursive \"dist/**/*.test.js\"",
"update-packages": "npm i && npx npm-check-updates -t minor -u && rimraf node_modules package-lock.json && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jason3S/rx-stream.git"
},
"keywords": [
"rxjs",
"node",
"stream"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jason3S/rx-stream/issues"
},
"homepage": "https://github.com/Jason3S/rx-stream#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"cspell": "^6.19.2",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"fs-extra": "^10.1.0",
"lorem-ipsum": "^2.0.8",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"rxjs": "^7.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/fs-extra": "^9.0.13"
},
"peerDependencies": {
"rxjs": "^7.0.0"
},
"engines": {
"node": ">=14"
},
"files": [
"dist",
"!**/*.map",
"!**/*.test.*",
"!**/*.spec.*"
],
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.test.ts"
],
"extension": [
".ts"
],
"reporter": [
"lcov",
"json",
"html"
]
}
}