-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 768 Bytes
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
{
"name": "stream-toolbox",
"description": "A toolbox for handling Node.js stream",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc --build --verbose",
"clean": "rm -rf packages/*/index.js packages/*/index.d.ts packages/*/tsconfig.tsbuildinfo",
"create": "node scripts/create.mjs",
"test": "node scripts/test.mjs"
},
"author": "haochuan9421 <hc199421@gmail.com>",
"homepage": "https://github.com/haochuan9421/stream-toolbox",
"repository": {
"type": "git",
"url": "git@github.com:haochuan9421/stream-toolbox.git"
},
"devDependencies": {
"@types/node": "^18.14.2",
"semver": "^7.3.8",
"tar": "^6.1.13",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/*"
],
"license": "MIT"
}