UNPKG

3.21 kBJSONView Raw
1{
2 "name": "@atomist/sdm-pack-cloudfoundry",
3 "version": "1.0.3",
4 "description": "Atomist SDM extension pack for Cloud Foundry",
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-cloudfoundry#readme",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/atomist/sdm-pack-cloudfoundry.git"
15 },
16 "keywords": [
17 "atomist",
18 "automation",
19 "sdm",
20 "extension",
21 "pack",
22 "cloud",
23 "cloudfoundry"
24 ],
25 "bugs": {
26 "url": "https://github.com/atomist/sdm-pack-cloudfoundry/issues"
27 },
28 "main": "./index.js",
29 "types": "./index.d.ts",
30 "dependencies": {
31 "@atomist/microgrammar": "^1.2.0",
32 "@atomist/slack-messages": "^1.1.0",
33 "@types/lodash": "^4.14.116",
34 "archiver": "^2.1.1",
35 "axios": "^0.18.0",
36 "cf-client": "^0.13.26",
37 "form-data": "^2.3.2",
38 "js-yaml": "^3.12.0",
39 "lodash": "^4.17.10",
40 "random-word": "^2.0.0",
41 "request": "^2.87.0"
42 },
43 "peerDependencies": {
44 "@atomist/automation-client": ">=1.3.0",
45 "@atomist/sdm": ">=1.3.0",
46 "@atomist/sdm-core": ">=1.3.0",
47 "@atomist/sdm-pack-build": ">=1.0.4",
48 "@atomist/sdm-pack-node": ">=1.0.3",
49 "@atomist/sdm-pack-spring": ">=1.1.1"
50 },
51 "devDependencies": {
52 "@atomist/automation-client": "^1.3.0",
53 "@atomist/sdm": "^1.3.0",
54 "@atomist/sdm-core": "^1.3.0",
55 "@atomist/sdm-pack-build": "^1.0.4",
56 "@atomist/sdm-pack-node": "^1.0.3",
57 "@atomist/sdm-pack-spring": "^1.1.1",
58 "@types/mocha": "^5.2.5",
59 "@types/node": "^10.5.7",
60 "@types/power-assert": "^1.5.0",
61 "espower-typescript": "^9.0.0",
62 "mocha": "^5.2.0",
63 "npm-run-all": "^4.1.5",
64 "power-assert": "^1.6.0",
65 "supervisor": "^0.12.0",
66 "ts-node": "^7.0.0",
67 "tslint": "^5.11.0",
68 "typedoc": "^0.13.0",
69 "typescript": "^3.1.6"
70 },
71 "directories": {
72 "test": "test"
73 },
74 "scripts": {
75 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
76 "build": "run-s compile test lint doc",
77 "clean": "run-p clean:compile clean:doc clean:run",
78 "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
79 "clean:dist": "run-s clean clean:npm",
80 "clean:doc": "rimraf doc",
81 "clean:npm": "rimraf node_modules",
82 "clean:run": "rimraf *-v8.log profile.txt log",
83 "compile": "run-s gql:gen compile:ts",
84 "compile:ts": "tsc --project .",
85 "doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
86 "fmt": "tsfmt --replace",
87 "gql:gen": "atm-gql-gen",
88 "lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
89 "lint:fix": "npm run lint -- --fix",
90 "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
91 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
92 "typedoc": "npm run doc"
93 },
94 "engines": {
95 "node": ">=8.0.0",
96 "npm": ">=5.0.0"
97 }
98}