UNPKG

2.08 kBJSONView Raw
1{
2 "name": "csv",
3 "version": "5.3.2",
4 "description": "A mature CSV toolset with simple api, full of options and tested against large datasets.",
5 "keywords": [
6 "node",
7 "csv",
8 "tsv",
9 "parser",
10 "parse",
11 "stringifier",
12 "stringify",
13 "transform",
14 "stream",
15 "generate",
16 "generation"
17 ],
18 "homepage": "https://csv.js.org/",
19 "bugs": "https://github.com/adaltas/node-csv/issues",
20 "author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
21 "contributors": [
22 "David Worms <david@adaltas.com> (https://www.adaltas.com)"
23 ],
24 "license": "MIT",
25 "engines": {
26 "node": ">= 0.1.90"
27 },
28 "main": "./lib",
29 "repository": {
30 "type": "git",
31 "url": "https://github.com/adaltas/node-csv.git"
32 },
33 "coffeelintConfig": {
34 "indentation": {
35 "level": "error",
36 "value": 2
37 },
38 "line_endings": {
39 "level": "error",
40 "value": "unix"
41 },
42 "max_line_length": {
43 "level": "ignore"
44 }
45 },
46 "dependencies": {
47 "csv-generate": "^3.2.4",
48 "csv-parse": "^4.8.8",
49 "stream-transform": "^2.0.1",
50 "csv-stringify": "^5.3.6"
51 },
52 "devDependencies": {
53 "@types/mocha": "^7.0.2",
54 "@types/node": "^13.7.7",
55 "@types/should": "^13.0.0",
56 "coffeescript": "~2.5.1",
57 "mocha": "~7.1.0",
58 "should": "~13.2.3",
59 "ts-node": "^8.6.2",
60 "typescript": "^3.8.3"
61 },
62 "optionalDependencies": {},
63 "files": [
64 "lib"
65 ],
66 "scripts": {
67 "preversion": "grep '## Trunk' CHANGELOG.md && npm test && cp lib/*.ts lib/es5 && git add lib/es5/*.ts",
68 "version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
69 "postversion": "git push && git push --tags && npm publish",
70 "patch": "npm version patch -m 'Bump to version %s'",
71 "minor": "npm version minor -m 'Bump to version %s'",
72 "major": "npm version major -m 'Bump to version %s'",
73 "test": "mocha test/**/*.{coffee,ts}"
74 },
75 "types": "./lib/index.d.ts"
76}