smartgit/package.json

70 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2016-03-30 23:59:45 +00:00
{
2023-07-10 00:56:04 +00:00
"name": "@push.rocks/smartgit",
2024-06-23 21:37:30 +00:00
"version": "3.1.1",
2024-04-14 15:38:19 +00:00
"description": "A smart wrapper for nodegit that simplifies Git operations in Node.js.",
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:19:19 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-31 13:18:04 +00:00
"buildDocs": "tsdoc"
2016-03-30 23:59:45 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:13:21 +00:00
"url": "https://code.foss.global/push.rocks/smartgit.git"
2016-03-30 23:59:45 +00:00
},
"keywords": [
2024-04-14 15:38:19 +00:00
"git",
"nodegit",
"version control",
"git wrapper",
"programming",
"development",
"code management",
"repository management",
"git operations"
2016-03-30 23:59:45 +00:00
],
"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
},
2024-05-29 12:13:21 +00:00
"homepage": "https://code.foss.global/push.rocks/smartgit",
2016-03-30 23:59:45 +00:00
"dependencies": {
2023-11-15 14:15:18 +00:00
"@push.rocks/smartenv": "^5.0.12",
2024-06-22 00:44:19 +00:00
"@push.rocks/smartfile": "^11.0.20",
"@push.rocks/smartpath": "^5.0.18",
2023-07-27 11:45:48 +00:00
"@push.rocks/smartpromise": "^4.0.2",
2024-06-22 00:44:19 +00:00
"@push.rocks/smartshell": "^3.0.5",
"@push.rocks/smartstring": "^4.0.15",
"@push.rocks/smarttime": "^4.0.6",
2024-06-22 00:44:19 +00:00
"@types/diff": "^5.2.1",
2023-07-27 11:45:48 +00:00
"@types/minimatch": "^5.1.2",
2024-06-22 00:44:19 +00:00
"diff": "^5.2.0",
"isomorphic-git": "^1.25.10"
2016-03-30 23:59:45 +00:00
},
"devDependencies": {
2024-06-22 00:44:19 +00:00
"@git.zone/tsbuild": "^2.1.80",
2023-11-15 14:15:18 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-06-22 00:44:19 +00:00
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23"
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
]
2024-06-22 00:44:20 +00:00
}