-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
120 lines (120 loc) · 3.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@atomist/sdm-local",
"version": "1.2.2",
"description": "Atomist Software Delivery Machine - Local",
"author": {
"name": "Atomist",
"email": "[email protected]",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"homepage": "https://github.com/atomist/sdm-local#readme",
"repository": {
"type": "git",
"url": "https://github.com/atomist/sdm-local.git"
},
"keywords": [
"atomist",
"automation",
"sdm",
"local",
"ci",
"cd"
],
"bugs": {
"url": "https://github.com/atomist/sdm-local/issues"
},
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.17.0",
"@types/express-handlebars": "0.0.32",
"@types/fs-extra": "^8.0.0",
"@types/inquirer": "^6.0.3",
"@types/json-stringify-safe": "^5.0.0",
"@types/jssha": "^2.0.0",
"@types/lodash": "^4.14.136",
"@types/marked": "^0.6.5",
"@types/node": "^12.6.2",
"@types/node-notifier": "5.4.0",
"@types/sprintf-js": "^1.1.2",
"@types/yargs": "^13.0.0",
"ansi.js": "^0.0.5",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"boxen": "^4.1.0",
"chalk": "^2.4.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"file-url": "^3.0.0",
"format-date": "^1.0.0",
"fs-extra": "^8.1.0",
"inquirer": "^6.5.0",
"json-stringify-safe": "^5.0.1",
"jssha": "^2.3.1",
"lodash": "^4.17.14",
"lodash.template": "^4.5.0",
"lodash.merge": "^4.6.2",
"marked": "^0.7.0",
"marked-terminal": "^3.2.0",
"on-new-line": "^1.0.0",
"portfinder": "^1.0.20",
"serialize-error": "^4.1.0",
"simple-node-logger": "^18.12.23",
"sprintf-js": "^1.1.2",
"strip-ansi": "^5.2.0",
"terminal-kit": "1.28.3",
"yargs": "^13.2.4"
},
"peerDependencies": {
"@atomist/automation-client": "^2.2.2-main.2",
"@atomist/microgrammar": "^1.2.1",
"@atomist/sdm": "^2.2.0-main.3",
"@atomist/slack-messages": "^1.1.1"
},
"devDependencies": {
"@atomist/automation-client": "^2.2.2-main.2",
"@atomist/microgrammar": "^1.2.1",
"@atomist/sdm": "^2.2.0-main.3",
"@atomist/slack-messages": "^1.1.1",
"@types/mocha": "^5.2.7",
"@types/power-assert": "^1.5.0",
"axios-mock-adapter": "^1.17.0",
"espower-typescript": "^9.0.2",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"rimraf": "^3.0.0",
"supervisor": "^0.12.0",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typedoc": "^0.15.3",
"typescript": "^3.7.3"
},
"directories": {
"test": "test"
},
"scripts": {
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "run-s compile test lint doc",
"clean": "run-p clean:compile clean:doc clean:run",
"clean:compile": "rimraf git-info.json \"index.{d.ts,js{,.map}}\" \"{lib,test}/**/*.{d.ts,js{,.map}}\" lib/typings/types.ts",
"clean:dist": "run-s clean clean:npm",
"clean:doc": "rimraf doc",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt log",
"compile": "run-s compile:ts",
"compile:ts": "tsc --project .",
"doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --require espower-typescript/guess --require source-map-support/register \"test/**/*est.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*est.ts}\"",
"typedoc": "npm run doc"
},
"engines": {
"node": ">=8.1.0",
"npm": ">=5.0.0"
}
}