-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "@coxmediagroup/github-status-check-runner",
"version": "1.0.1",
"description": "CLI utility for updating GitHub status checks.",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"checks:lint": "npm run status-check -- --context 'lint' -- npm run lint --silent",
"clean": "rm -rf ./dist",
"status-check": "node bin/ghsc --owner coxmediagroup --repository github-status-check-runner --token $GITHUB_TOKEN",
"lint": "tslint --project tsconfig.json -c tslint.json 'src/**/*.ts'",
"test": "echo 'Error: no test specified' && exit 1"
},
"keywords": [
"checks",
"CI",
"cli",
"GitHub",
"status"
],
"author": "Cox Media Group",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@octokit/rest": "^15.13.1",
"validate.js": "^0.12.0",
"yargs": "^12.0.2"
},
"devDependencies": {
"@types/debug": "0.0.31",
"@types/node": "^10.11.7",
"@types/validate.js": "^0.11.0",
"@types/yargs": "^12.0.1",
"node-ts": "^2.1.2",
"prettier": "^1.14.3",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.3"
},
"exclude": [
"docs",
"node_modules",
"src"
],
"include": [
"dist"
],
"bin": {
"ghsc": "bin/ghsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coxmediagroup/github-status-check-runner.git"
},
"bugs": {
"url": "https://github.com/coxmediagroup/github-status-check-runner/issues"
},
"homepage": "https://github.com/coxmediagroup/github-status-check-runner#readme"
}