-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
39 lines (39 loc) · 1.11 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
{
"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 <[email protected]> (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": {
"@eslint/js": "^9.16.0",
"@stylistic/eslint-plugin": "^2.11.0",
"eslint": "^8.57.1",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"i": "^0.3.7",
"typescript-eslint": "^7.18.0"
}
}