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.",
|
2022-01-03 17:37:44 +01:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
2022-08-06 18:38:53 +02:00
|
|
|
"type": "module",
|
2018-05-10 19:47:14 +02:00
|
|
|
"author": "Lossless GmbH",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
2018-08-18 22:05:26 +02:00
|
|
|
"test": "(tstest test/)",
|
2022-08-06 18:43:42 +02:00
|
|
|
"build": "(tsbuild --allowimplicitany)",
|
2022-08-06 18:38:53 +02:00
|
|
|
"buildDocs": "tsdoc"
|
2018-05-10 19:47:14 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-08-06 18:38:53 +02:00
|
|
|
"@gitzone/tsbuild": "^2.1.65",
|
|
|
|
|
"@gitzone/tsrun": "^1.2.37",
|
|
|
|
|
"@gitzone/tstest": "^1.0.73",
|
|
|
|
|
"@pushrocks/smartfile": "^10.0.4",
|
|
|
|
|
"@pushrocks/tapbundle": "^5.0.4",
|
2022-10-29 22:24:20 +02:00
|
|
|
"@types/node": "^18.6.4"
|
2018-05-10 19:47:14 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-08-06 18:38:53 +02:00
|
|
|
"@pushrocks/smartpromise": "^3.1.7",
|
|
|
|
|
"@pushrocks/smartstring": "^4.0.2"
|
2019-07-08 16:57:45 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
2019-12-15 18:18:39 +00:00
|
|
|
"ts/**/*",
|
|
|
|
|
"ts_web/**/*",
|
|
|
|
|
"dist/**/*",
|
2022-01-03 17:37:44 +01:00
|
|
|
"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",
|
|
|
|
|
"npmextra.json",
|
|
|
|
|
"readme.md"
|
2022-01-03 17:37:44 +01:00
|
|
|
],
|
|
|
|
|
"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"
|
|
|
|
|
}
|
2023-07-10 02:42:53 +02:00
|
|
|
}
|