UNPKG

3.75 kBJSONView Raw
1{
2 "name": "@atomist/sdm-core",
3 "version": "1.3.0-master.20190124142143",
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.7.2",
28 "@octokit/rest": "^16.3.0",
29 "@types/proper-lockfile": "^3.0.0",
30 "@types/request": "^2.48.1",
31 "app-root-path": "^2.1.0",
32 "axios": "^0.18.0",
33 "chalk": "^2.4.1",
34 "copyfiles": "^2.0.0",
35 "fs-extra": "^7.0.0",
36 "glob": "^7.1.3",
37 "hot-shots": "^6.0.1",
38 "json-stringify-safe": "^5.0.1",
39 "lodash": "^4.17.10",
40 "moment": "^2.23.0",
41 "moment-duration-format": "^2.2.2",
42 "npm": "^6.5.0",
43 "promise-retry": "^1.1.1",
44 "proper-lockfile": "^3.2.0",
45 "retry": "^0.12.0",
46 "sprintf-js": "^1.1.2",
47 "tempfile": "^2.0.0",
48 "tmp-promise": "^1.0.4",
49 "ts-essentials": "^1.0.2"
50 },
51 "peerDependencies": {
52 "@atomist/automation-client": ">=1.2.0",
53 "@atomist/sdm": ">=1.2.0",
54 "@atomist/slack-messages": ">=1.1.0",
55 "@atomist/tree-path": ">=1.0.1",
56 "@atomist/microgrammar": ">=1.0.1"
57 },
58 "devDependencies": {
59 "@atomist/automation-client": "1.3.0-master.20190123083033",
60 "@atomist/sdm": "1.3.0-master.20190124114347",
61 "@atomist/slack-messages": "^1.1.0",
62 "@types/lodash": "^4.14.119",
63 "@types/mocha": "^5.2.5",
64 "@types/node": "^10.12.18",
65 "@types/power-assert": "^1.4.29",
66 "axios-mock-adapter": "^1.15.0",
67 "espower-typescript": "^9.0.0",
68 "istanbul": "^0.4.5",
69 "mocha": "^5.2.0",
70 "npm-run-all": "^4.1.5",
71 "power-assert": "^1.4.4",
72 "prettier": "^1.15.3",
73 "rimraf": "^2.6.2",
74 "supervisor": "^0.12.0",
75 "ts-node": "^7.0.1",
76 "tslint": "^5.12.0",
77 "typedoc": "^0.13.0",
78 "typescript": "^3.2.2"
79 },
80 "directories": {
81 "test": "test"
82 },
83 "scripts": {
84 "autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
85 "build": "run-s compile test lint doc",
86 "clean": "run-p clean:compile clean:test clean:doc clean:run",
87 "clean:compile": "rimraf git-info.json build \"index.{d.ts,js{,.map}}\" \"{src,lib,test}/**/*.{d.ts,js{,.map}}\" {src,lib}/typings/types.ts",
88 "clean:dist": "run-s clean clean:npm",
89 "clean:doc": "rimraf doc",
90 "clean:npm": "rimraf node_modules",
91 "clean:run": "rimraf *-v8.log profile.txt log",
92 "clean:test": "rimraf .nyc_output coverage",
93 "compile": "run-s gql:gen compile:ts",
94 "compile:ts": "tsc --project .",
95 "doc": "typedoc --mode modules --ignoreCompilerErrors --excludeExternals --exclude \"**/*.d.ts\" --out doc lib",
96 "gql:gen": "atm-gql-gen",
97 "lint": "run-s lint:ts lint:gql",
98 "lint:fix": "run-s lint:ts:fix lint:gql:fix",
99 "lint:gql": "prettier --list-different \"lib/graphql/**/*.graphql\"",
100 "lint:gql:fix": "prettier --write \"lib/graphql/**/*.graphql\"",
101 "lint:ts": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" \"**/*.ts\"",
102 "lint:ts:fix": "npm run lint:ts -- --fix",
103 "test": "mocha --require ts-node/register --require source-map-support/register \"test/**/*est.ts\"",
104 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
105 "typedoc": "npm run doc"
106 },
107 "engines": {
108 "node": ">=8.1.0",
109 "npm": ">=5.0.0"
110 }
111}