-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.35 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
{
"name": "@atomist/ci-sdm",
"version": "0.1.0",
"description": "CI SDM",
"author": {
"name": "Atomist",
"email": "support@atomist.com",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"homepage": "https://github.com/atomist/ci-sdm#readme",
"repository": {
"type": "git",
"url": "https://github.com/atomist/ci-sdm.git"
},
"bugs": {
"url": "https://github.com/atomist/ci-sdm/issues"
},
"keywords": [
"atomist",
"automation",
"ci",
"sdm"
],
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@atomist/automation-client": "1.3.0-master.20190209143849",
"@atomist/microgrammar": "1.1.0-master.20190205190919",
"@atomist/sdm": "1.3.0-master.20190206205235",
"@atomist/sdm-core": "1.3.0-master.20190211113656",
"@atomist/sdm-pack-analysis": "0.1.0-master.20190213071419",
"@atomist/sdm-pack-build": "1.0.4-master.20190110123121",
"@atomist/sdm-pack-docker": "1.1.0-kaniko.20190206162534",
"@atomist/sdm-pack-fingerprints": "2.0.0-updates.20190208003156",
"@atomist/sdm-pack-issue": "1.1.1-master.20190120184619",
"@atomist/sdm-pack-k8s": "1.3.4-master.20190212205638",
"@atomist/sdm-pack-node": "1.0.3-master.20190206103839",
"@atomist/sdm-pack-spring": "1.1.1-master.20190131212713",
"@atomist/slack-messages": "^1.1.0",
"@kubernetes/client-node": "^0.7.2",
"@types/git-url-parse": "^9.0.0",
"@types/package-json": "^4.0.1",
"@types/request": "^2.48.1",
"@types/yamljs": "^0.2.30",
"fs-extra": "^7.0.1",
"git-url-parse": "^11.1.2",
"lodash": "^4.17.11",
"ts-essentials": "^1.0.2",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@atomist/sdm-local": "1.0.5-master.20190201192832",
"@types/mocha": "^5.2.5",
"@types/power-assert": "^1.5.0",
"espower-typescript": "^9.0.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.0",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0",
"ts-node": "^8.0.2",
"tslint": "^5.11.0",
"typedoc": "^0.14.2",
"typescript": "^3.3.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:test 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",
"clean:test": "rimraf .nyc_output coverage",
"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 --config tslint.json --format verbose --project .",
"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.1.0",
"npm": ">=5.0.0"
}
}