UNPKG

3.92 kBJSONView Raw
1{
2 "name": "@atomist/sdm-local",
3 "version": "1.0.8",
4 "description": "Atomist Software Delivery Machine - Local",
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-local#readme",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/atomist/sdm-local.git"
15 },
16 "keywords": [
17 "atomist",
18 "automation",
19 "sdm",
20 "local",
21 "ci",
22 "cd"
23 ],
24 "bugs": {
25 "url": "https://github.com/atomist/sdm-local/issues"
26 },
27 "main": "./index.js",
28 "types": "./index.d.ts",
29 "dependencies": {
30 "@types/body-parser": "^1.17.0",
31 "@types/express": "^4.16.1",
32 "@types/express-handlebars": "0.0.30",
33 "@types/fs-extra": "^5.0.5",
34 "@types/inquirer": "^0.0.44",
35 "@types/json-stringify-safe": "^5.0.0",
36 "@types/jssha": "^2.0.0",
37 "@types/lodash": "^4.14.123",
38 "@types/marked": "^0.6.3",
39 "@types/node": "^11.11.3",
40 "@types/node-notifier": "0.0.28",
41 "@types/serialize-error": "^2.1.0",
42 "@types/sprintf-js": "^1.1.2",
43 "@types/strip-ansi": "^3.0.0",
44 "@types/yargs": "^12.0.9",
45 "ansi.js": "^0.0.5",
46 "axios": "^0.19.0",
47 "body-parser": "^1.19.0",
48 "boxen": "^3.2.0",
49 "chalk": "^2.4.2",
50 "express": "^4.17.1",
51 "express-handlebars": "^3.1.0",
52 "file-url": "^2.0.2",
53 "format-date": "^1.0.0",
54 "fs-extra": "^8.0.1",
55 "inquirer": "^6.2.2",
56 "json-stringify-safe": "^5.0.1",
57 "jssha": "^2.3.1",
58 "lodash": "^4.17.11",
59 "marked": "^0.6.2",
60 "marked-terminal": "^3.2.0",
61 "on-new-line": "^1.0.0",
62 "portfinder": "^1.0.20",
63 "serialize-error": "^3.0.0",
64 "simple-node-logger": "^0.93.42",
65 "sprintf-js": "^1.1.2",
66 "strip-ansi": "^5.2.0",
67 "terminal-kit": "^1.28.0",
68 "yargs": "^13.2.4"
69 },
70 "peerDependencies": {
71 "@atomist/automation-client": ">=1.5.0",
72 "@atomist/microgrammar": ">=1.2.0",
73 "@atomist/sdm": ">=1.5.0",
74 "@atomist/sdm-core": ">=1.5.0",
75 "@atomist/slack-messages": ">=1.1.0"
76 },
77 "devDependencies": {
78 "@atomist/automation-client": "^1.5.0",
79 "@atomist/microgrammar": "^1.2.0",
80 "@atomist/sdm": "^1.5.0",
81 "@atomist/sdm-core": "^1.5.0",
82 "@atomist/slack-messages": "^1.1.0",
83 "@types/mocha": "^5.2.6",
84 "@types/power-assert": "^1.5.0",
85 "axios-mock-adapter": "^1.16.0",
86 "espower-typescript": "^9.0.2",
87 "mocha": "^6.1.4",
88 "npm-run-all": "^4.1.5",
89 "power-assert": "^1.6.1",
90 "rimraf": "^2.6.3",
91 "supervisor": "^0.12.0",
92 "ts-node": "^8.2.0",
93 "tslint": "^5.17.0",
94 "typedoc": "^0.14.2",
95 "typescript": "^3.5.1"
96 },
97 "directories": {
98 "test": "test"
99 },
100 "scripts": {
101 "autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
102 "build": "run-s compile test lint doc",
103 "clean": "run-p clean:compile clean:doc clean:run",
104 "clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
105 "clean:dist": "run-s clean clean:npm",
106 "clean:doc": "rimraf doc",
107 "clean:npm": "rimraf node_modules",
108 "clean:run": "rimraf *-v8.log profile.txt log",
109 "compile": "run-s compile:ts",
110 "compile:ts": "tsc --project .",
111 "doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
112 "lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
113 "lint:fix": "npm run lint -- --fix",
114 "test": "mocha --require espower-typescript/guess --require source-map-support/register \"test/**/*est.ts\"",
115 "test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*est.ts}\"",
116 "typedoc": "npm run doc"
117 },
118 "engines": {
119 "node": ">=8.1.0",
120 "npm": ">=5.0.0"
121 }
122}