-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 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
52
53
54
55
{
"name": "continuous-streams",
"version": "1.1.3",
"description": "Special purpose Node streams",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"lint": "eslint . --ignore-path ./.eslintignore",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive --timeout 5000 test/unit",
"test:typescript": "mocha -r ts-node/register test/typescript/**/*.spec.ts",
"preversion": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git://github.com/funny-bytes/continuous-streams.git"
},
"keywords": [
"stream",
"streams",
"continuous"
],
"author": "Frank Thelen",
"license": "MIT",
"bugs": {
"url": "https://github.com/funny-bytes/continuous-streams/issues"
},
"homepage": "https://github.com/funny-bytes/continuous-streams#readme",
"engines": {
"node": ">=14.x.x"
},
"dependencies": {
"delay": "^5.0.0",
"promise-timeout": "^1.3.0"
},
"devDependencies": {
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.7",
"@types/node": "^24.5.2",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"coveralls": "^3.1.1",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-should-promised": "^2.0.0",
"mocha": "^11.7.2",
"nyc": "^17.1.0",
"sinon": "^21.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}