smartfile/package.json

48 lines
1.5 KiB
JSON
Raw Normal View History

2015-11-03 18:57:29 +00:00
{
"name": "@pushrocks/smartfile",
"private": false,
2018-07-03 22:59:42 +00:00
"version": "6.0.3",
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": {
2018-07-03 22:59:39 +00:00
"test": "(tsrun test/test.ts)",
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)",
2018-07-03 22:59:39 +00:00
"build": "(npmts)"
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": {
2018-07-03 06:59:00 +00:00
"@pushrocks/smartpromise": "^2.0.5",
2018-07-03 22:59:39 +00:00
"@pushrocks/smartrequest": "^1.0.15",
"@types/fs-extra": "^5.0.3",
2018-02-16 20:57:44 +00:00
"@types/vinyl": "^2.0.2",
"fs-extra": "^6.0.1",
2017-07-30 20:53:54 +00:00
"glob": "^7.1.2",
2017-09-21 13:39:38 +00:00
"js-yaml": "^3.10.0",
2017-03-11 23:06:56 +00:00
"smartpath": "^3.2.8",
2017-01-20 23:47:48 +00:00
"vinyl-file": "^3.0.0"
2015-11-03 18:57:29 +00:00
},
"devDependencies": {
2018-07-03 22:59:39 +00:00
"@gitzone/tsrun": "^1.1.1",
"@types/node": "^10.5.1",
2018-02-16 20:57:44 +00:00
"gulp-function": "^2.2.14",
"tapbundle": "^2.0.2"
2015-11-03 18:57:29 +00:00
}
2018-07-03 06:55:10 +00:00
}