UNPKG

4.13 kBJSONView Raw
1{
2 "name": "status-board-cli",
3 "description": "CLI utility for Status Board",
4 "version": "2.0.42",
5 "author": "James W. Lane @jameswlane",
6 "bin": {
7 "status-board": "./bin/run"
8 },
9 "bugs": "https://github.com/jameswlane/status-board-cli/issues",
10 "dependencies": {
11 "@oclif/command": "1.5.13",
12 "@oclif/config": "1.12.12",
13 "@oclif/plugin-help": "2.1.6",
14 "async": "2.6.2",
15 "debug": "4.1.1",
16 "ejs": "2.6.1",
17 "mkdirp": "0.5.1",
18 "read-package-json": "2.0.13",
19 "sanitize-filename": "1.6.1",
20 "semver": "5.6.0",
21 "status-board": "1.1.72",
22 "tslib": "1.9.3",
23 "underscore": "1.9.1"
24 },
25 "devDependencies": {
26 "@oclif/dev-cli": "1.22.0",
27 "@oclif/test": "1.2.4",
28 "@oclif/tslint": "3.1.1",
29 "@types/async": "2.4.1",
30 "@types/chai": "4.1.7",
31 "@types/debug": "4.1.4",
32 "@types/ejs": "2.6.3",
33 "@types/jest": "24.0.11",
34 "@types/mkdirp": "0.5.2",
35 "@types/node": "10.12.18",
36 "@types/sanitize-filename": "1.1.28",
37 "@types/semver": "5.5.0",
38 "@types/underscore": "1.8.14",
39 "all-contributors-cli": "6.3.1",
40 "chai": "4.2.0",
41 "codecov": "3.3.0",
42 "commitizen": "3.1.1",
43 "cz-conventional-changelog": "2.1.0",
44 "globby": "9.2.0",
45 "jest": "24.7.1",
46 "jest-junit": "6.3.0",
47 "lint-staged": "8.1.5",
48 "opt-cli": "1.6.0",
49 "semantic-release": "15.13.3",
50 "snyk": "1.153.0",
51 "ts-jest": "24.0.2",
52 "ts-node": "8.1.0",
53 "tslint": "5.16.0",
54 "tslint-config-airbnb": "5.11.1",
55 "typescript": "3.4.5"
56 },
57 "engines": {
58 "node": ">=8.0.0"
59 },
60 "files": [
61 "/bin",
62 "/lib",
63 "/templates",
64 "/npm-shrinkwrap.json",
65 "/oclif.manifest.json"
66 ],
67 "homepage": "https://github.com/jameswlane/status-board-cli",
68 "keywords": [
69 "oclif"
70 ],
71 "license": "MIT",
72 "main": "lib/index.js",
73 "oclif": {
74 "commands": "./lib/commands",
75 "bin": "status-board",
76 "plugins": [
77 "@oclif/plugin-help"
78 ]
79 },
80 "repository": "jameswlane/status-board-cli",
81 "scripts": {
82 "postpack": "rm -f oclif.manifest.json",
83 "posttest": "tslint -p test -t stylish",
84 "prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
85 "version": "oclif-dev readme && git add README.md",
86 "clean": "rimraf lib coverage",
87 "commit": "git-cz",
88 "commitmsg": "opt --in commit-msg --exec \"commitlint -e $GIT_PARAMS\"",
89 "contributors:add": "all-contributors add",
90 "contributors:generate": "all-contributors generate",
91 "coverage:report": "coveralls",
92 "precommit": "lint-staged && opt --in pre-commit --exec \"npm run verify\"",
93 "semantic-release": "semantic-release",
94 "setup": "npm i -g npmvet david depcheck types-checker commitizen semantic-release-cli all-contributors-cli",
95 "test": "snyk test && jest --coverage",
96 "test:ci": "jest --ci --maxWorkers=4",
97 "test:coverage:ci": "jest --ci --maxWorkers=4 --coverage --testResultsProcessor=\"jest-junit\"",
98 "test:coverage:codecov": "codecov",
99 "test:watch": "jest --watch",
100 "ts:build": "tsc -b",
101 "ts:watch": "tsc -w",
102 "tslint": "tslint --config tslint.json \"src/**/*.ts\"",
103 "tslint:ci": "tslint --config tslint.json --format junit --out reports/tslint/tslint-results.xml \"src/**/*.ts\"",
104 "tslint:fix": "tslint --config tslint.json --fix \"src/**/*.ts\"",
105 "verify": "npm run verify:npmvet && npm run verify:david && npm run verify:audit && npm run verify:tscheck && npm run tslint && npm run test",
106 "verify:offline": "npm run verify:npmvet && npm run tslint && npm run test",
107 "verify:circleci": "circleci config validate -c .circleci/config.yml",
108 "verify:ci": "npm run verify:npmvet && npm run verify:audit && npm run test:ci",
109 "verify:check": "depcheck",
110 "verify:david": "david",
111 "verify:npmvet": "npmvet --renderer ci --strict",
112 "verify:audit": "npm audit fix",
113 "verify:tscheck": "types-checker",
114 "snyk-protect": "snyk protect",
115 "prepare": "npm run snyk-protect"
116 },
117 "types": "lib/index.d.ts",
118 "config": {
119 "commitizen": {
120 "path": "./node_modules/cz-conventional-changelog"
121 }
122 }
123}