This repository has been archived by the owner on Mar 9, 2019. It is now read-only.
forked from atomist/k8s-sdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 3.04 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
{
"name": "@atomist/k8-automation",
"version": "1.0.0",
"description": "Automations for deploying, updating, and removing resources in Kubernetes",
"author": "Atomist",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/k8-automation.git"
},
"homepage": "https://github.com/atomist/k8-automation#readme",
"bugs": {
"url": "https://github.com/atomist/k8-automation/issues"
},
"keywords": [
"atomist",
"automation",
"kubernetes"
],
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@atomist/automation-client": "1.0.0-master.20181006002158",
"@atomist/automation-client-ext-logzio": "1.0.0-master.20180926175305",
"@atomist/sdm": "1.0.0-master.20181007193107",
"@types/app-root-path": "^1.2.4",
"@types/json-stringify-safe": "^5.0.0",
"@types/lodash": "^4.14.116",
"@types/node": "^10.5.7",
"@types/promise-retry": "^1.1.1",
"app-root-path": "^2.0.1",
"json-stringify-safe": "^5.0.1",
"kubernetes-client": "^5.3.1",
"lodash": "^4.17.10",
"logzio-nodejs": "^0.4.10",
"promise-retry": "^1.1.1",
"serialize-error": "^2.1.0",
"winston-logzio": "^1.0.6"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/power-assert": "^1.5.0",
"espower-typescript": "^9.0.0",
"graphql-code-generator": "^0.8.14",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"npm-run-all": "^4.1.3",
"power-assert": "^1.6.0",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"directories": {
"test": "test"
},
"scripts": {
"autostart": "nodemon --watch index.ts --watch lib --ext ts --delay 4 --exec ts-node -- node_modules/@atomist/automation-client/bin/start.js",
"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 git:info gql:gen compile:ts",
"compile:ts": "tsc --project .",
"doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"git:info": "atm-git-info",
"gql:gen": "atm-gql-gen",
"lint": "tslint --format verbose --project . --exclude \"node_modules/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"start": "atm-start",
"test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
"typedoc": "npm run doc"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
}
}