UNPKG

2.78 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-docker",
3 "version": "1.2.1-master.20190502172115",
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 "@atomist/tree-path": "^1.0.3",
31 "@types/fs-extra": "^5.0.5",
32 "dockerfile-ast": "0.0.13",
33 "fs-extra": "^7.0.1",
34 "lodash": "^4.17.11",
35 "portfinder": "^1.0.20",
36 "vscode-languageserver-types": "^3.14.0"
37 },
38 "peerDependencies": {
39 "@atomist/automation-client": ">=1.3.0",
40 "@atomist/sdm": ">=1.3.0"
41 },
42 "devDependencies": {
43 "@atomist/automation-client": "^1.3.0",
44 "@atomist/sdm": "^1.3.0",
45 "@atomist/sdm-core": "^1.3.0",
46 "@types/lodash": "^4.14.120",
47 "@types/mocha": "^5.2.5",
48 "@types/node": "^11.9.3",
49 "@types/power-assert": "^1.5.0",
50 "espower-typescript": "^9.0.1",
51 "mocha": "^5.2.0",
52 "npm-run-all": "^4.1.5",
53 "power-assert": "^1.6.1",
54 "rimraf": "^2.6.3",
55 "supervisor": "^0.12.0",
56 "ts-node": "^8.0.2",
57 "tslint": "^5.12.1",
58 "typedoc": "^0.14.2",
59 "typescript": "^3.3.3"
60 },
61 "directories": {
62 "test": "test"
63 },
64 "scripts": {
65 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
66 "build": "run-s compile test lint doc",
67 "clean": "run-p clean:compile clean:doc clean:run",
68 "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
69 "clean:dist": "run-s clean clean:npm",
70 "clean:doc": "rimraf doc",
71 "clean:npm": "rimraf node_modules",
72 "clean:run": "rimraf *-v8.log profile.txt log",
73 "compile": "run-s compile:ts",
74 "compile:ts": "tsc --project .",
75 "doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
76 "lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
77 "lint:fix": "npm run lint -- --fix",
78 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
79 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
80 "typedoc": "npm run doc"
81 },
82 "engines": {
83 "node": "9.x.x",
84 "npm": "6.x.x"
85 }
86}