UNPKG

@atomist/sdm-pack-docker

Version:

Extension Pack for an Atomist SDM to integrate Docker

95 lines (94 loc) 3.22 kB
{ "name": "@atomist/sdm-pack-docker", "version": "2.0.2", "description": "Extension Pack for an Atomist SDM to integrate Docker", "author": { "name": "Atomist", "email": "support@atomist.com", "url": "https://atomist.com/" }, "license": "Apache-2.0", "homepage": "https://github.com/atomist/sdm-pack-docker#readme", "repository": { "type": "git", "url": "git+https://github.com/atomist/sdm-pack-docker.git" }, "keywords": [ "atomist", "automation", "sdm", "extension", "pack", "docker" ], "bugs": { "url": "https://github.com/atomist/sdm-pack-docker/issues" }, "main": "./index.js", "types": "./index.d.ts", "dependencies": { "@atomist/tree-path": "^1.0.3", "@types/fs-extra": "^8.0.0", "dockerfile-ast": "0.0.16", "fs-extra": "^8.1.0", "lodash": "^4.17.13", "portfinder": "^1.0.20", "vscode-languageserver-types": "^3.14.0" }, "peerDependencies": { "@atomist/automation-client": ">=1.6.1", "@atomist/sdm": ">=1.6.0", "@atomist/sdm-pack-fingerprints": ">=3.2.2" }, "devDependencies": { "@atomist/automation-client": "^1.6.1", "@atomist/sdm": "^1.6.0", "@atomist/sdm-core": "^1.6.0", "@atomist/sdm-pack-fingerprints": "^3.2.2", "@types/lodash": "^4.14.136", "@types/mocha": "^5.2.7", "@types/node": "^12.6.2", "@types/power-assert": "^1.5.0", "espower-typescript": "^9.0.2", "mocha": "^6.1.4", "npm-run-all": "^4.1.5", "power-assert": "^1.6.1", "rimraf": "^2.6.3", "supervisor": "^0.12.0", "ts-node": "^8.3.0", "tslint": "^5.18.0", "typedoc": "^0.14.2", "typescript": "^3.5.3" }, "directories": { "test": "test" }, "scripts": { "autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test", "build": "run-s compile test lint doc", "clean": "run-p clean:compile clean:test clean:doc clean:run", "clean:compile": "rimraf git-info.json build \"index.{d.ts,js{,.map}}\" \"{src,lib,test}/**/*.{d.ts,js{,.map}}\" {src,lib}/typings/types.ts", "clean:dist": "run-s clean clean:npm", "clean:doc": "rimraf doc", "clean:npm": "rimraf node_modules", "clean:run": "rimraf *-v8.log profile.txt log", "clean:test": "rimraf .nyc_output coverage", "compile": "run-s gql:gen compile:ts", "compile:ts": "tsc --project .", "doc": "typedoc --mode modules --ignoreCompilerErrors --excludeExternals --exclude \"**/*.d.ts\" --out doc lib", "gql:gen": "atm-gql-gen", "lint": "run-s lint:ts lint:gql", "lint:fix": "run-s lint:ts:fix lint:gql:fix", "lint:gql": "prettier --list-different \"lib/graphql/**/*.graphql\"", "lint:gql:fix": "prettier --write \"lib/graphql/**/*.graphql\"", "lint:ts": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" \"**/*.ts\"", "lint:ts:fix": "npm run lint:ts -- --fix", "test": "mocha --require ts-node/register --require source-map-support/register \"test/**/*est.ts\"", "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.ts}\"", "typedoc": "npm run doc" }, "engines": { "node": "9.x.x", "npm": "6.x.x" } }