mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
103 lines
2.1 KiB
JSON
103 lines
2.1 KiB
JSON
{
|
|
"name": "docker-compose",
|
|
"version": "0.23.4",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"test": "jest test --verbose",
|
|
"eslint": "eslint src/**/*.ts test/**/*.ts",
|
|
"build": "tsc",
|
|
"prepublishOnly": "tsc",
|
|
"release": "yarn build && standard-version"
|
|
},
|
|
"repository": {
|
|
"url": "git@github.com:PDMLab/docker-compose.git"
|
|
},
|
|
"keywords": [
|
|
"devops",
|
|
"devops-tools",
|
|
"docker",
|
|
"docker-compose",
|
|
"test",
|
|
"test-tools"
|
|
],
|
|
"author": "Alexander Zeitler <alexander.zeitler@pdmlab.com>",
|
|
"contributors": [
|
|
{
|
|
"name": "Ignatiev Mikhail"
|
|
},
|
|
{
|
|
"name": "Ezekiel Warren"
|
|
},
|
|
{
|
|
"name": "Palash Mondal"
|
|
},
|
|
{
|
|
"name": "lacabra"
|
|
},
|
|
{
|
|
"name": "Lance Rutkin"
|
|
},
|
|
{
|
|
"name": "MartinJLee"
|
|
},
|
|
{
|
|
"name": "Sergey Falinsky"
|
|
},
|
|
{
|
|
"name": "Lars Kumbier",
|
|
"url": "https://kumbier.it"
|
|
},
|
|
{
|
|
"name": "Paweł Niedzielski"
|
|
},
|
|
{
|
|
"name": "Jannis Pohlmann"
|
|
},
|
|
{
|
|
"name": "Eduardo Weiland"
|
|
},
|
|
{
|
|
"name": "Nacho González Bullón"
|
|
},
|
|
{
|
|
"name": "Will O'Beirne"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"description": "Manage docker-compose from Node.js",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^8.2.0",
|
|
"@commitlint/config-conventional": "^8.2.0",
|
|
"@types/dockerode": "^2.5.27",
|
|
"@types/jest": "^25.1.4",
|
|
"@types/node": "^10.17.17",
|
|
"@typescript-eslint/eslint-plugin": "^2.23.0",
|
|
"@typescript-eslint/parser": "^2.23.0",
|
|
"dockerode": "^3.1.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-es": "^3.19.44",
|
|
"eslint-plugin-extended": "^0.2.0",
|
|
"eslint-plugin-jest": "^23.8.2",
|
|
"husky": "^4.2.3",
|
|
"jest": "^25.1.0",
|
|
"standard-version": "^7.0.0",
|
|
"ts-jest": "^25.2.1",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6.0.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"commitlint": {
|
|
"extends": [
|
|
"@commitlint/config-conventional"
|
|
]
|
|
}
|
|
}
|