smartgit/package.json

60 lines
1.4 KiB
JSON
Raw Normal View History

2016-03-30 23:59:45 +00:00
{
2019-06-18 13:17:50 +00:00
"name": "@pushrocks/smartgit",
2022-07-31 13:18:04 +00:00
"version": "2.0.4",
2019-06-18 13:17:50 +00:00
"description": "smart wrapper for nodegit",
2020-08-15 13:51:24 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-31 13:14:18 +00:00
"type": "module",
2016-03-30 23:59:45 +00:00
"scripts": {
2019-06-18 13:17:50 +00:00
"test": "(tstest test/)",
2022-07-31 13:18:04 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2016-03-30 23:59:45 +00:00
},
"repository": {
"type": "git",
2016-07-03 22:13:32 +00:00
"url": "https://gitlab.com/pushrocks/smartgit.git"
2016-03-30 23:59:45 +00:00
},
"keywords": [
"json",
"jade",
"template"
],
"author": "Smart Coordination GmbH <office@push.rocks> (https://push.rocks)",
"license": "MIT",
"bugs": {
2016-07-03 22:13:32 +00:00
"url": "https://gitlab.com/pushrocks/smartgit/issues"
2016-03-30 23:59:45 +00:00
},
2016-07-03 22:13:32 +00:00
"homepage": "https://gitlab.com/pushrocks/smartgit",
2016-03-30 23:59:45 +00:00
"dependencies": {
2022-07-31 13:14:18 +00:00
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartfile": "^10.0.4",
"@pushrocks/smartpath": "^5.0.5",
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartshell": "^2.0.30",
"@pushrocks/smartstring": "^4.0.2",
"@types/minimatch": "^3.0.5",
2022-07-31 13:14:18 +00:00
"isomorphic-git": "^1.19.1"
2016-03-30 23:59:45 +00:00
},
"devDependencies": {
2022-07-31 13:14:18 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4"
2019-06-18 13:17:50 +00:00
},
"private": false,
"files": [
2020-08-15 13:51:24 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-18 13:17:50 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-08-15 13:51:24 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-06-18 13:17:50 +00:00
]
2022-07-31 13:18:04 +00:00
}