smartcsv/package.json

46 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2018-05-10 17:47:14 +00:00
{
"name": "@pushrocks/smartcsv",
2022-08-06 16:43:42 +00:00
"version": "2.0.1",
"private": false,
"description": "handle csv data | gitzone standard compliant",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2018-05-10 17:47:14 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2018-08-18 20:05:26 +00:00
"test": "(tstest test/)",
2022-08-06 16:43:42 +00:00
"build": "(tsbuild --allowimplicitany)",
"buildDocs": "tsdoc"
2018-05-10 17:47:14 +00:00
},
"devDependencies": {
"@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",
"@types/node": "^18.6.4",
"tslint": "^6.1.3",
2019-12-15 18:30:46 +00:00
"tslint-config-prettier": "^1.18.0"
2018-05-10 17:47:14 +00:00
},
"dependencies": {
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartstring": "^4.0.2"
2019-07-08 14:57:45 +00: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 14:57:45 +00:00
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
2019-07-08 14:57:45 +00:00
]
2022-08-06 16:38:54 +00:00
}