Files
smartcsv/package.json
T

59 lines
1.3 KiB
JSON
Raw Normal View History

2018-05-10 19:47:14 +02:00
{
2023-07-10 02:42:53 +02:00
"name": "@push.rocks/smartcsv",
2022-10-29 22:24:20 +02:00
"version": "2.0.2",
2018-06-10 14:38:30 +02:00
"private": false,
2024-04-14 17:27:06 +02:00
"description": "A module for handling CSV data compliant with Gitzone standard.",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2018-05-10 19:47:14 +02:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
"buildDocs": "tsdoc"
2018-05-10 19:47:14 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2018-05-10 19:47:14 +02:00
},
"dependencies": {
"@push.rocks/smartstring": "^4.1.1"
2019-07-08 16:57:45 +02:00
},
"files": [
2019-12-15 18:18:39 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
2019-12-15 18:18:39 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-07-08 16:57:45 +02:00
"cli.js",
".smartconfig.json",
"license",
2019-07-08 16:57:45 +02:00
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 17:27:06 +02:00
],
"keywords": [
"CSV",
"data parsing",
"data conversion",
"TypeScript",
"CSV manipulation",
"CSV to JSON"
2024-05-29 14:12:20 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartcsv",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartcsv.git"
}
}