smartfile/package.json

62 lines
1.8 KiB
JSON
Raw Normal View History

2015-11-03 18:57:29 +00:00
{
"name": "@pushrocks/smartfile",
"private": false,
2019-09-29 14:43:32 +00:00
"version": "7.0.6",
2015-11-03 18:57:29 +00:00
"description": "offers smart ways to work with files in nodejs",
2016-03-14 02:50:14 +00:00
"main": "dist/index.js",
2016-05-23 02:11:58 +00:00
"typings": "dist/index.d.ts",
2015-11-03 18:57:29 +00:00
"scripts": {
"test": "(tstest test/)",
2015-11-03 18:57:29 +00:00
"reinstall": "(rm -r node_modules && npm install)",
"release": "(git pull origin master && npm version patch && git push origin master && git checkout release && git merge master && git push origin release && git checkout master)",
"update": "(git checkout master && git pull origin master && npm install)",
"upgrade": "(npm run update) && (ncu upgradeAll && npm install)",
"build": "(tsbuild)"
2015-11-03 18:57:29 +00:00
},
"repository": {
"type": "git",
2016-06-23 17:02:34 +00:00
"url": "https://gitlab.com/pushrocks/smartfile.git"
2015-11-03 18:57:29 +00:00
},
"keywords": [
"filesystem",
"json"
],
"author": "Smart Coordination GmbH <office@push.rocks> (https://push.rocks)",
"license": "MIT",
"bugs": {
2016-06-23 17:02:34 +00:00
"url": "https://gitlab.com/pushrocks/smartfile/issues"
2015-11-03 18:57:29 +00:00
},
2016-06-23 17:02:34 +00:00
"homepage": "https://gitlab.com/pushrocks/smartfile",
2015-11-03 18:57:29 +00:00
"dependencies": {
2019-09-27 09:00:17 +00:00
"@pushrocks/smarthash": "^2.0.6",
"@pushrocks/smartpath": "^4.0.1",
2019-09-27 09:00:17 +00:00
"@pushrocks/smartpromise": "^3.0.5",
"@pushrocks/smartrequest": "^1.1.27",
"@types/fs-extra": "^8.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.4",
"js-yaml": "^3.13.1"
2015-11-03 18:57:29 +00:00
},
"devDependencies": {
2019-09-27 09:00:17 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tsrun": "^1.2.8",
"@gitzone/tstest": "^1.0.24",
"@pushrocks/tapbundle": "^3.0.13",
"@types/node": "^12.7.8",
2018-11-22 22:23:26 +00:00
"gulp-function": "^2.2.14",
2019-09-27 09:00:17 +00:00
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0"
2019-06-26 19:17:58 +00:00
},
"files": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
2019-09-27 09:00:17 +00:00
"dist_ts_web/*",
2019-06-26 19:17:58 +00:00
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2019-09-29 14:43:32 +00:00
}