-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 884 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 884 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
29
30
31
{
"name": "@iwsio/json-csv-node-root",
"version": "1.0.0",
"description": "Easily convert JSON to CSV in Node.JS. This package supports streaming and buffered conversion to CSV.",
"homepage": "https://github.com/IWSLLC/json-csv",
"author": "Nathan Bridgewater <info@iws.io> (https://iws.io/)",
"engines": {
"node": ">=22"
},
"bugs": {
"url": "https://github.com/IWSLLC/json-csv/issues"
},
"scripts": {
"prebuild": "npx tsc --build --clean",
"build": "npx tsc --build",
"prewatch": "npx tsc --build --clean",
"watch": "npx tsc --build --watch",
"test": "npm run test -w test-runner -w test-runner-core"
},
"license": "BSD-3",
"workspaces": [
"test-runner",
"test-runner-core",
"packages/json-csv-node",
"packages/json-csv-core",
"samples"
],
"devDependencies": {
"@iwsio/eslint-config": "^1.0.10"
}
}