1 | {
|
2 | "name": "@atomist/sdm-core",
|
3 | "version": "1.9.0",
|
4 | "description": "Atomist Software Delivery Machine - Implementation",
|
5 | "author": {
|
6 | "name": "Atomist",
|
7 | "email": "support@atomist.com",
|
8 | "url": "https://atomist.com/"
|
9 | },
|
10 | "license": "Apache-2.0",
|
11 | "repository": {
|
12 | "type": "git",
|
13 | "url": "https://github.com/atomist/sdm-core.git"
|
14 | },
|
15 | "keywords": [
|
16 | "atomist",
|
17 | "automation",
|
18 | "sdm",
|
19 | "ci",
|
20 | "cd"
|
21 | ],
|
22 | "homepage": "https://github.com/atomist/sdm-core#readme",
|
23 | "bugs": {
|
24 | "url": "https://github.com/atomist/sdm-core/issues"
|
25 | },
|
26 | "dependencies": {
|
27 | "@kubernetes/client-node": "^0.10.2",
|
28 | "@octokit/rest": "^16.34.1",
|
29 | "@types/flat": "0.0.28",
|
30 | "@types/glob": "^7.1.1",
|
31 | "@types/proper-lockfile": "^4.1.0",
|
32 | "@types/request": "^2.48.1",
|
33 | "@types/retry": "^0.12.0",
|
34 | "app-root-path": "^2.2.1",
|
35 | "axios": "^0.19.0",
|
36 | "camelcase-keys": "^6.1.0",
|
37 | "chalk": "^2.4.2",
|
38 | "change-case": "^3.1.0",
|
39 | "fast-glob": "^3.1.0",
|
40 | "fast-json-stable-stringify": "^2.0.0",
|
41 | "flat": "^4.1.0",
|
42 | "fs-extra": "^8.1.0",
|
43 | "glob": "^7.1.4",
|
44 | "js-yaml": "^3.13.1",
|
45 | "json-stringify-safe": "^5.0.1",
|
46 | "lodash": "^4.17.15",
|
47 | "moment": "^2.24.0",
|
48 | "moment-duration-format": "2.2.2",
|
49 | "promise-retry": "^1.1.1",
|
50 | "proper-lockfile": "^4.1.1",
|
51 | "request": "^2.88.0",
|
52 | "stack-trace": "0.0.10",
|
53 | "tmp-promise": "^2.0.2",
|
54 | "ts-essentials": "^2.0.12"
|
55 | },
|
56 | "peerDependencies": {
|
57 | "@atomist/automation-client": "^1.9.0",
|
58 | "@atomist/microgrammar": "^1.2.1",
|
59 | "@atomist/sdm": "^1.9.0",
|
60 | "@atomist/slack-messages": "^1.1.1",
|
61 | "@atomist/tree-path": "^1.0.3"
|
62 | },
|
63 | "devDependencies": {
|
64 | "@atomist/automation-client": "^1.9.0",
|
65 | "@atomist/microgrammar": "^1.2.1",
|
66 | "@atomist/sdm": "^1.9.0",
|
67 | "@atomist/slack-messages": "^1.1.1",
|
68 | "@atomist/tree-path": "^1.0.3",
|
69 | "@types/lodash": "^4.14.144",
|
70 | "@types/mocha": "^5.2.7",
|
71 | "@types/node": "^12.7.12",
|
72 | "@types/power-assert": "^1.5.0",
|
73 | "@types/rimraf": "^2.0.2",
|
74 | "axios-mock-adapter": "^1.17.0",
|
75 | "espower-typescript": "^9.0.2",
|
76 | "mocha": "^6.2.1",
|
77 | "npm-run-all": "^4.1.5",
|
78 | "nyc": "^14.1.1",
|
79 | "power-assert": "^1.6.1",
|
80 | "prettier": "^1.18.2",
|
81 | "rimraf": "^3.0.0",
|
82 | "supervisor": "^0.12.0",
|
83 | "ts-node": "^8.5.4",
|
84 | "tslint": "^5.20.1",
|
85 | "typedoc": "^0.15.3",
|
86 | "typescript": "^3.7.3"
|
87 | },
|
88 | "directories": {
|
89 | "test": "test"
|
90 | },
|
91 | "scripts": {
|
92 | "autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
|
93 | "build": "run-s compile test lint doc",
|
94 | "clean": "run-p clean:compile clean:test clean:doc clean:run",
|
95 | "clean:compile": "rimraf git-info.json \"index.{d.ts,js}{,.map}\" \"{lib,test}/**/*.{d.ts,js}{,.map}\" lib/typings/types.ts",
|
96 | "clean:dist": "run-s clean clean:npm",
|
97 | "clean:doc": "rimraf doc",
|
98 | "clean:npm": "rimraf node_modules",
|
99 | "clean:run": "rimraf *-v8.log profile.txt log",
|
100 | "clean:test": "rimraf .nyc_output coverage",
|
101 | "compile": "run-s gql:gen compile:ts",
|
102 | "compile:ts": "tsc --project .",
|
103 | "doc": "typedoc --mode modules --ignoreCompilerErrors --excludeExternals --exclude \"**/*.d.ts\" --out doc lib",
|
104 | "gql:gen": "atm-gql-gen",
|
105 | "lint": "run-p lint:ts lint:gql",
|
106 | "lint:fix": "run-p lint:ts:fix lint:gql:fix",
|
107 | "lint:gql": "prettier --list-different \"lib/graphql/**/*.graphql\"",
|
108 | "lint:gql:fix": "prettier --write \"lib/graphql/**/*.graphql\"",
|
109 | "lint:ts": "tslint --config tslint.json --format verbose --project .",
|
110 | "lint:ts:fix": "npm run lint:ts -- --fix",
|
111 | "test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
|
112 | "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
|
113 | "typedoc": "npm run doc"
|
114 | },
|
115 | "engines": {
|
116 | "node": ">=8.2.0",
|
117 | "npm": ">=5.0.0"
|
118 | }
|
119 | }
|