UNPKG

2.81 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-docker",
3 "version": "1.1.0-ipcrm-multi-registry.20190207170018",
4 "description": "Extension Pack for an Atomist SDM to integrate Docker",
5 "author": {
6 "name": "Atomist",
7 "email": "support@atomist.com",
8 "url": "https://atomist.com/"
9 },
10 "license": "Apache-2.0",
11 "homepage": "https://github.com/atomist/sdm-pack-docker#readme",
12 "repository": {
13 "type": "git",
14 "url": "git+https://github.com/atomist/sdm-pack-docker.git"
15 },
16 "keywords": [
17 "atomist",
18 "automation",
19 "sdm",
20 "extension",
21 "pack",
22 "docker"
23 ],
24 "bugs": {
25 "url": "https://github.com/atomist/sdm-pack-docker/issues"
26 },
27 "main": "./index.js",
28 "types": "./index.d.ts",
29 "dependencies": {
30 "@types/fs-extra": "^5.0.4",
31 "fs-extra": "^7.0.1",
32 "lodash": "^4.17.10",
33 "portfinder": "^1.0.19"
34 },
35 "peerDependencies": {
36 "@atomist/automation-client": ">=1.1.0",
37 "@atomist/sdm": ">=1.1.0"
38 },
39 "devDependencies": {
40 "@atomist/automation-client": "1.3.0-master.20190115210858",
41 "@atomist/sdm": "1.3.0-master.20190125092715",
42 "@atomist/sdm-core": "1.3.0-master.20190124142143",
43 "@atomist/sdm-pack-spring": "^1.1.1-master.20190131212713",
44 "@types/lodash": "^4.14.118",
45 "@types/mocha": "^5.2.5",
46 "@types/node": "^10.12.3",
47 "@types/power-assert": "^1.4.29",
48 "espower-typescript": "^9.0.1",
49 "mocha": "^5.2.0",
50 "npm-run-all": "^4.1.5",
51 "power-assert": "^1.4.4",
52 "rimraf": "^2.6.2",
53 "supervisor": "^0.12.0",
54 "ts-node": "^7.0.1",
55 "tslint": "^5.9.1",
56 "typedoc": "^0.13.0",
57 "typescript": "^3.1.6"
58 },
59 "directories": {
60 "test": "test"
61 },
62 "scripts": {
63 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
64 "build": "run-s compile test lint doc",
65 "clean": "run-p clean:compile clean:doc clean:run",
66 "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
67 "clean:dist": "run-s clean clean:npm",
68 "clean:doc": "rimraf doc",
69 "clean:npm": "rimraf node_modules",
70 "clean:run": "rimraf *-v8.log profile.txt log",
71 "compile": "run-s compile:ts",
72 "compile:ts": "tsc --project .",
73 "doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
74 "lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
75 "lint:fix": "npm run lint -- --fix",
76 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
77 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
78 "typedoc": "npm run doc"
79 },
80 "engines": {
81 "node": "9.x.x",
82 "npm": "6.x.x"
83 }
84}