UNPKG

2.64 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-docker",
3 "version": "1.0.0-master.20180913141143",
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.17"
32 },
33 "peerDependencies": {
34 "@atomist/automation-client": "*",
35 "@atomist/sdm": "*"
36 },
37 "devDependencies": {
38 "@atomist/automation-client": "1.0.0-master.20180913093131",
39 "@atomist/sdm": "1.0.0-master.20180913101258",
40 "@atomist/sdm-core": "1.0.0-master.20180913110440",
41 "@types/lodash": "^4.14.109",
42 "@types/mocha": "^2.2.48",
43 "@types/node": "^9.4.1",
44 "@types/power-assert": "^1.4.29",
45 "espower-typescript": "^8.1.3",
46 "mocha": "^4.1.0",
47 "npm-run-all": "^4.1.2",
48 "power-assert": "^1.4.4",
49 "rimraf": "^2.6.2",
50 "supervisor": "^0.12.0",
51 "ts-node": "^3.3.0",
52 "tslint": "^5.9.1",
53 "typedoc": "^0.11.1",
54 "typescript": "^2.9.2",
55 "typescript-formatter": "^7.2.0"
56 },
57 "directories": {
58 "test": "test"
59 },
60 "scripts": {
61 "build": "npm-run-all lint compile",
62 "clean": "npm-run-all clean:js clean:build",
63 "clean:benchmark": "rimraf isolate-*-v8.log",
64 "clean:build": "rimraf *-v8.log profile.txt build",
65 "clean:dist": "npm-run-all clean clean:npm",
66 "clean:js": "rimraf \"{src,test}/**/*.js\"",
67 "clean:npm": "rimraf node_modules",
68 "compile": "npm-run-all compile:ts",
69 "compile:ts": "tsc --project .",
70 "fmt": "tsfmt --replace",
71 "lint": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" \"**/*.ts\"",
72 "lint:fix": "npm run lint -- --fix",
73 "test": "mocha --require espower-typescript/guess --exit \"test/{*.ts,!(api|benchmark|bitbucket-api)/**/*.ts}\"",
74 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
75 "typedoc": "typedoc --mode modules --excludeExternals --out build/typedoc src",
76 "watch:compile": "tsc --project . --watch",
77 "watch": "supervisor --watch build --quiet --exec npm -- run start"
78 },
79 "engines": {
80 "node": "9.x.x",
81 "npm": "6.x.x"
82 }
83}