This repository was archived by the owner on Sep 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.77 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.77 KB
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
{
"name": "@atomist/sample-sdm",
"version": "0.5.1",
"description": "Sample Atomist automation for software delivery",
"author": {
"name": "Atomist",
"email": "support@atomist.com",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/sample-sdm.git"
},
"keywords": [
"atomist",
"automation",
"github"
],
"homepage": "https://github.com/atomist/sample-sdm#readme",
"bugs": {
"url": "https://github.com/atomist/sample-sdm/issues"
},
"dependencies": {
"@atomist/automation-client": "^1.0.0-RC.2",
"@atomist/automation-client-ext-dashboard": "^1.0.0-RC.1",
"@atomist/automation-client-ext-eventlog": "^1.0.0-RC.1",
"@atomist/microgrammar": "^1.0.0-M.4",
"@atomist/sdm": "^1.0.0-RC.2",
"@atomist/sdm-core": "^1.0.0-RC.2",
"@atomist/sdm-pack-build": "^1.0.0-RC.2",
"@atomist/sdm-pack-checkstyle": "^1.0.0-RC.2",
"@atomist/sdm-pack-cloudfoundry": "^1.0.0-RC.2",
"@atomist/sdm-pack-node": "^1.0.0-RC.2",
"@atomist/sdm-pack-sloc": "^1.0.0-RC.2",
"@atomist/sdm-pack-sonarqube": "^1.0.0-RC.2",
"@atomist/sdm-pack-spring": "^1.0.0-RC.2",
"@atomist/slack-messages": "^1.0.0",
"@commitlint/config-conventional": "^6.1.3",
"@commitlint/lint": "^6.2.0",
"@commitlint/load": "^6.1.3",
"@types/lodash": "^4.14.109",
"@types/properties-reader": "0.0.1",
"logzio-nodejs": "^0.4.11",
"portfinder": "^1.0.13",
"properties-reader": "0.0.16",
"winston-logzio": "^1.0.8"
},
"devDependencies": {
"@atomist/sdm-local": "^1.0.0-RC.2",
"@types/mocha": "^2.2.48",
"@types/node": "^8.9.5",
"@types/power-assert": "^1.4.29",
"apollo-codegen": "^0.19.0",
"espower-typescript": "^8.1.3",
"graphql-code-generator": "^0.8.19",
"inquirer": "^6.0.0",
"mocha": "^4.1.0",
"npm-run-all": "^4.1.2",
"power-assert": "^1.4.4",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"typedoc": "^0.9.0",
"typescript": "^2.8.3"
},
"directories": {
"test": "test"
},
"scripts": {
"autostart": "npm-run-all --print-label --parallel watch:compile watch",
"autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "npm-run-all compile test",
"clean": "npm-run-all clean:js clean:build",
"clean:build": "rimraf *-v8.log profile.txt build",
"clean:dist": "npm-run-all clean clean:npm",
"clean:js": "rimraf \"{src,test}/**/*.js\"",
"clean:npm": "rimraf node_modules",
"compile": "npm-run-all git:info compile:gql compile:ts",
"compile:gql": "npm-run-all gql:gen gql:copy",
"compile:ts": "tsc --project .",
"debug": "node $NODE_DEBUG_OPTION node_modules/@atomist/automation-client/start.client.js",
"fmt": "prettier --write \"**/*.graphql\"",
"git:info": "atm-git-info",
"gql:copy": "copyfiles \"./src/**/*.graphql\" build",
"gql:gen": "atm-gql-gen",
"lint": "npm-run-all lint:ts lint:gql",
"lint:ts": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" \"**/*.ts\"",
"lint:gql": "prettier --list-different \"src/graphql/**/*.graphql\"",
"lint:fix": "npm-run-all lint:ts:fix",
"lint:ts:fix": "npm run lint:ts -- --fix",
"start": "atm-start",
"test": "mocha --exit --require espower-typescript/guess \"test/**/*.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
"typedoc": "typedoc --mode modules --excludeExternals --out build/typedoc src",
"watch:compile": "tsc --project . --watch",
"watch": "supervisor --watch build --quiet --exec npm -- run start"
},
"engines": {
"node": "8.x.x",
"npm": "5.x.x"
}
}