smartarchive/package.json

59 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2016-01-18 18:38:55 +00:00
{
2020-03-16 15:44:54 +00:00
"name": "@pushrocks/smartarchive",
2022-04-04 14:28:45 +00:00
"version": "3.0.1",
2017-03-12 21:20:10 +00:00
"description": "work with archives",
2020-03-13 20:22:56 +00:00
"main": "dist_ts/index.js",
2020-03-16 14:38:17 +00:00
"typings": "dist_ts/index.d.ts",
2022-04-04 12:15:51 +00:00
"type": "module",
2016-01-18 18:38:55 +00:00
"scripts": {
2021-04-19 11:53:49 +00:00
"test": "(tstest test/ --web)",
2022-04-04 14:28:40 +00:00
"build": "tsbuild --web --allowimplicitany"
2016-01-18 18:38:55 +00:00
},
"repository": {
"type": "git",
2017-03-12 21:16:48 +00:00
"url": "git+https://github.com/pushrocks/smartarchive.git"
2016-01-18 18:38:55 +00:00
},
2017-03-12 21:16:48 +00:00
"author": "Lossless GmbH",
2016-01-18 18:38:55 +00:00
"license": "MIT",
"bugs": {
2017-03-12 21:16:48 +00:00
"url": "https://github.com/pushrocks/smartarchive/issues"
2016-01-18 18:38:55 +00:00
},
2017-03-12 21:16:48 +00:00
"homepage": "https://github.com/pushrocks/smartarchive#readme",
2016-01-18 18:38:55 +00:00
"dependencies": {
2022-04-04 12:15:51 +00:00
"@pushrocks/smartfile": "^9.0.6",
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartrequest": "^1.1.56",
"@pushrocks/smartrx": "^2.0.25",
2020-03-16 14:38:17 +00:00
"@pushrocks/smartunique": "^3.0.3",
2022-04-04 12:15:51 +00:00
"@pushrocks/streamfunction": "^4.0.1",
2021-04-19 11:49:25 +00:00
"@types/gunzip-maybe": "^1.4.0",
2022-04-04 12:15:51 +00:00
"@types/tar-stream": "^2.2.2",
2021-04-19 11:49:25 +00:00
"gunzip-maybe": "^1.4.2",
2022-04-04 12:15:51 +00:00
"tar": "^6.1.11",
2021-04-19 11:49:25 +00:00
"tar-stream": "^2.2.0"
2016-01-18 18:38:55 +00:00
},
2020-03-13 20:22:56 +00:00
"devDependencies": {
2022-04-04 12:15:51 +00:00
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tstest": "^1.0.70",
"@pushrocks/tapbundle": "^5.0.3",
2021-04-19 11:49:25 +00:00
"tslint": "^6.1.3",
2020-03-13 20:22:56 +00:00
"tslint-config-prettier": "^1.18.0"
},
"private": false,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-03-16 15:13:58 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-03-13 20:22:56 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2021-04-19 11:49:25 +00:00
],
"browserslist": [
"last 1 chrome versions"
2020-03-13 20:22:56 +00:00
]
2020-03-16 15:44:54 +00:00
}