system/packages/git-modules/package.json
2024-07-02 21:56:23 +02:00

55 lines
1.7 KiB
JSON

{
"name": "@xblox/git-module",
"version": "0.0.14",
"description": "Package which emulates git sub modules",
"contributors": [],
"devDependencies": {
"@types/bluebird": "^3.5.11",
"@types/chalk": "^0.4.31",
"@types/globby": "^6.1.0",
"@types/lodash": "^4.14.74",
"@types/mkdirp": "^0.5.1",
"@types/node": "^8.0.30",
"@types/ora": "^1.3.1",
"@types/q": "^1.0.5",
"@types/which": "^1.0.28",
"@types/yargs": "^8.0.2",
"typescript": "^2.5.2"
},
"modules": [
],
"repository": {
"type": "git",
"url": "git://github.com/xblox/git-module.git"
},
"main": "dist/main.js",
"bin": {
"git-module": "dist/main.js"
},
"scripts": {
"lint": "tslint --project=./tsconfig.json",
"status": "tsc ; node dist/main.js each --profile='test' --command='status' --source='../' --target='../out'",
"clone": "tsc ; node dist/main.js each --command='clone' --source='./' --target='./out'",
"list": "tsc ; node dist/main.js list --source='../' --target='../out'",
"last": "tsc ; node dist/main.js last --source='../' --target='../out'",
"add": "tsc ; node dist/main.js add --source='./'",
"commit": "tsc ; node dist/main.js commit --source='../' --target='../out'",
"update-modules": "tsc ; node dist/main.js update --source='../' --target='../out' --verbose=true"
},
"dependencies": {
"@xblox/fs": "^0.13.18",
"bluebird": "^3.5.1",
"class-transformer": "^0.1.8",
"globby": "^6.1.0",
"jsome": "^2.3.26",
"lodash": "^4.16.6",
"mkdirp": "^0.5.1",
"ora": "^1.3.0",
"pkg-dir": "^2.0.0",
"q": "^1.4.1",
"yargonaut": "^1.1.2",
"yargs": "^6.6.0",
"tslib": "^1.8.1"
}
}