-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
78 lines (78 loc) · 2.41 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
74
75
76
77
78
{
"name": "json2csv",
"version": "7.0.6",
"private": true,
"description": "Fast and highly configurable JSON to CSV converter",
"keywords": [
"json",
"to",
"csv",
"export",
"convert",
"parse"
],
"homepage": "http://juanjodiaz.github.io/json2csv",
"bugs": {
"url": "https://github.com/juanjoDiaz/json2csv/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/juanjodiaz/json2csv"
},
"license": "MIT",
"author": {
"name": "Juanjo Díaz",
"email": "[email protected]"
},
"type": "module",
"workspaces": [
"packages/cli",
"packages/formatters",
"packages/node",
"packages/plainjs",
"packages/test-helpers",
"packages/transforms",
"packages/whatwg",
"packages/test-performance"
],
"scripts": {
"docs:preview": "docsify serve docs",
"lint": "npm run lint -ws",
"lint:fix": "npm run lint -ws -- --fix ",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "npm run test:raw -w @json2csv/plainjs -w @json2csv/node -w @json2csv/whatwg -w @json2csv/cli | tap-spec",
"test-with-coverage": "c8 --include 'packages/*/src' --include 'packages/*/bin' --reporter=text --reporter=lcov npm test",
"build:cdn": "node build-cdn.js",
"build": "npm run build -w @json2csv/formatters -w @json2csv/transforms -w @json2csv/plainjs -w @json2csv/node -w @json2csv/whatwg -w @json2csv/cli",
"dependencies:update-internal": "npm run dependencies:update-internal -w @json2csv/cli -w @json2csv/plainjs -w @json2csv/node -w @json2csv/whatwg",
"changelog:update": "conventional-changelog-cli -p conventionalcommits -i CHANGELOG.md -s && cp CHANGELOG.md docs/others/CHANGELOG.md"
},
"devDependencies": {
"@types/tape": "^5.6.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"c8": "^7.14.0",
"conventional-changelog-cli": "^5.0.0",
"docsify-cli": "^4.4.4",
"esbuild": "^0.24.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.2.2",
"tiny-glob": "^0.2.9",
"ts-node": "^10.9.1",
"typescript": "~5.1.0"
},
"engines": {
"node": ">=14.17.0",
"npm": ">=7.0.0"
},
"volta": {
"node": "14.17.0"
}
}