UNPKG

2.61 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-docker",
3 "version": "1.0.2-master.20181209205834",
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 "lodash": "^4.17.10",
31 "portfinder": "^1.0.19"
32 },
33 "peerDependencies": {
34 "@atomist/automation-client": ">=1.0.1",
35 "@atomist/sdm": ">=1.0.1"
36 },
37 "devDependencies": {
38 "@atomist/automation-client": "1.1.0",
39 "@atomist/sdm": "1.1.0",
40 "@atomist/sdm-core": "1.1.0",
41 "@types/lodash": "^4.14.118",
42 "@types/mocha": "^5.2.5",
43 "@types/node": "^10.12.3",
44 "@types/power-assert": "^1.4.29",
45 "espower-typescript": "^9.0.1",
46 "mocha": "^5.2.0",
47 "npm-run-all": "^4.1.5",
48 "power-assert": "^1.4.4",
49 "rimraf": "^2.6.2",
50 "supervisor": "^0.12.0",
51 "ts-node": "^7.0.1",
52 "tslint": "^5.9.1",
53 "typedoc": "^0.13.0",
54 "typescript": "^3.1.6"
55 },
56 "directories": {
57 "test": "test"
58 },
59 "scripts": {
60 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
61 "build": "run-s compile test lint doc",
62 "clean": "run-p clean:compile clean:doc clean:run",
63 "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
64 "clean:dist": "run-s clean clean:npm",
65 "clean:doc": "rimraf doc",
66 "clean:npm": "rimraf node_modules",
67 "clean:run": "rimraf *-v8.log profile.txt log",
68 "compile": "run-s compile:ts",
69 "compile:ts": "tsc --project .",
70 "doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
71 "lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
72 "lint:fix": "npm run lint -- --fix",
73 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
74 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
75 "typedoc": "npm run doc"
76 },
77 "engines": {
78 "node": "9.x.x",
79 "npm": "6.x.x"
80 }
81}