1 | {
|
2 | "name": "csv-writer",
|
3 | "version": "1.6.0",
|
4 | "description": "Convert objects/arrays into a CSV string or write them into a CSV file",
|
5 | "main": "dist/index.js",
|
6 | "types": "src/index.ts",
|
7 | "scripts": {
|
8 | "compile": "tsc -p ./",
|
9 | "test": "npm run test:unit && npm run test:it",
|
10 | "pretest:unit": "rm -rf test-tmp && mkdir test-tmp",
|
11 | "test:unit": "mocha --require ts-node/register --recursive 'src/test/**/*.ts'",
|
12 | "test:it": "test-integration/test.sh",
|
13 | "coverage": "nyc npm run test:unit",
|
14 | "lint": "tslint -p .",
|
15 | "prepare": "npm run compile"
|
16 | },
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "git+https://github.com/ryu1kn/csv-writer.git"
|
20 | },
|
21 | "keywords": [
|
22 | "csv",
|
23 | "writer",
|
24 | "stringify"
|
25 | ],
|
26 | "author": "Ryuichi Inagaki",
|
27 | "license": "MIT",
|
28 | "bugs": {
|
29 | "url": "https://github.com/ryu1kn/csv-writer/issues"
|
30 | },
|
31 | "homepage": "https://github.com/ryu1kn/csv-writer#readme",
|
32 | "devDependencies": {
|
33 | "@types/mocha": "^5.2.7",
|
34 | "@types/node": "^12.12.25",
|
35 | "codeclimate-test-reporter": "^0.5.1",
|
36 | "coveralls": "^3.0.9",
|
37 | "mocha": "^7.0.0",
|
38 | "nyc": "^15.0.0",
|
39 | "ts-node": "^8.6.2",
|
40 | "tslint": "^5.20.1",
|
41 | "typescript": "^3.7.5"
|
42 | }
|
43 | }
|