-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.74 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.74 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
{
"name": "@myrotvorets/buffer-stream",
"version": "1.4.1",
"description": "Converts a Buffer into a Readable Stream",
"main": "dist/lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint . -f gha",
"lint:fix": "eslint --fix .",
"test": "node --require=ts-node/register/transpile-only --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-gha --test-reporter-destination=stdout test/*.test.ts",
"test:coverage": "c8 node --require=ts-node/register/transpile-only --test test/*.test.ts",
"test:sonarqube": "c8 node --require=ts-node/register/transpile-only --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-sonarqube --test-reporter-destination=test-report.xml test/*.test.ts",
"typecheck": "tsc --noEmit",
"prepack": "npm run build"
},
"files": [
"dist/lib/*.d.ts",
"dist/lib/*.js",
"dist/lib/*.js.map"
],
"typings": "dist/lib/index.d.ts",
"keywords": [
"buffer",
"stream"
],
"author": "Myrotvorets <support@myrotvorets.center> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.1.1",
"@types/node": "^25.5.0",
"c8": "^11.0.0",
"eslint-formatter-gha": "^2.0.1",
"node-reporter-gha": "^2.0.5",
"node-reporter-sonarqube": "^1.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myrotvorets/buffer-stream.git"
},
"bugs": {
"url": "https://github.com/myrotvorets/buffer-stream/issues"
},
"homepage": "https://github.com/myrotvorets/buffer-stream#readme",
"publishConfig": {
"access": "public",
"provenance": true
}
}