-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.27 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
{
"name": "@alessiofrittoli/stream-writer",
"version": "1.0.0",
"description": "Easly push data to a Stream",
"author": {
"name": "Alessio Frittoli",
"email": "[email protected]",
"url": "https://alessiofrittoli.it"
},
"license": "MIT",
"keywords": [
"stream",
"stream-writer",
"streaming"
],
"homepage": "https://github.com/alessiofrittoli/stream-writer#readme",
"bugs": {
"url": "https://github.com/alessiofrittoli/stream-writer/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alessiofrittoli/stream-writer.git"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "pnpm lint && pnpm test:ci && pnpm test:ci:jsdom && tsup",
"build:watch": "tsup --watch",
"lint": "eslint",
"release": "node scripts/publish.js --verbose --npm",
"test": "jest",
"test:watch": "jest --watchAll --verbose",
"test:jsdom": "JSDOM=true pnpm test:watch",
"test:ci": "jest --ci --verbose",
"test:ci:jsdom": "JSDOM=true pnpm test:ci",
"test:coverage": "pnpm test:watch --coverage",
"test:ci:coverage": "pnpm test:ci --coverage",
"test:serve-coverage": "http-server ./coverage/lcov-report --gzip true -p 0 -o --silent",
"test:coverage:serve": "concurrently --prefix none --kill-others \"pnpm test:coverage\" \"pnpm test:serve-coverage\"",
"test:coverage:jsdom": "JSDOM=true pnpm test:coverage",
"test:coverage:jsdom:serve": "JSDOM=true pnpm test:coverage:serve",
"test:jest": "pnpm test:watch jest.test.ts",
"test:jest:jsdom": "JSDOM=true pnpm test:jest",
"test:stream": "pnpm test:watch index.test.ts",
"test:stream:jsdom": "JSDOM=true pnpm test:stream"
},
"devDependencies": {
"@alessiofrittoli/node-scripts": "^2.2.1",
"@alessiofrittoli/stream-reader": "^1.3.0",
"@eslint/js": "^9.18.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
}
}