forked from ryu1kn/csv-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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
{
"name": "csv-writer",
"version": "1.3.0",
"description": "Convert objects/arrays into a CSV string or write them into a CSV file",
"main": "dist/index.js",
"types": "src/index.ts",
"scripts": {
"compile": "tsc -p ./",
"test": "npm run test:unit && npm run test:it",
"pretest:unit": "rm -rf test-tmp && mkdir test-tmp",
"test:unit": "mocha --require ts-node/register --recursive 'src/test/**/*.ts'",
"test:it": "test-integration/test.sh",
"coverage": "nyc npm run test:unit",
"lint": "tslint -p .",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryu1kn/csv-writer.git"
},
"keywords": [
"csv",
"writer",
"stringify"
],
"author": "Ryuichi Inagaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryu1kn/csv-writer/issues"
},
"homepage": "https://github.com/ryu1kn/csv-writer#readme",
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.40",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"ts-node": "^8.0.2",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
}
}