-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.92 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "status-board-cli",
"description": "CLI utility for Status Board",
"version": "0.0.0",
"author": "James W. Lane @jameswlane",
"bin": {
"status-board": "./bin/run"
},
"bugs": "https://github.com/jameswlane/status-board-cli/issues",
"dependencies": {
"@oclif/command": "1.5.19",
"@oclif/config": "1.13.3",
"@oclif/plugin-help": "2.2.3",
"async": "3.2.0",
"debug": "4.1.1",
"ejs": "3.1.7",
"mkdirp": "0.5.1",
"read-package-json": "2.1.1",
"sanitize-filename": "1.6.3",
"semver": "6.3.0",
"status-board": "1.1.83",
"tslib": "1.10.0",
"underscore": "1.9.2"
},
"devDependencies": {
"@oclif/dev-cli": "1.22.2",
"@oclif/test": "1.2.5",
"@oclif/tslint": "3.1.1",
"@types/async": "3.0.8",
"@types/chai": "4.2.7",
"@types/debug": "4.1.5",
"@types/ejs": "2.7.0",
"@types/jest": "24.9.0",
"@types/mkdirp": "0.5.2",
"@types/node": "12.12.21",
"@types/sanitize-filename": "1.6.3",
"@types/semver": "6.2.0",
"@types/underscore": "1.9.4",
"all-contributors-cli": "6.13.0",
"chai": "4.2.0",
"codecov": "3.7.1",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"globby": "10.0.1",
"jest": "24.9.0",
"jest-junit": "8.0.0",
"lint-staged": "9.5.0",
"opt-cli": "1.6.0",
"semantic-release": "15.14.0",
"ts-jest": "24.3.0",
"ts-node": "8.6.2",
"tslint": "5.20.1",
"tslint-config-airbnb": "5.11.2",
"typescript": "3.7.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/templates",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/jameswlane/status-board-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "status-board",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "jameswlane/status-board-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md",
"clean": "rimraf lib coverage",
"commit": "git-cz",
"commitmsg": "opt --in commit-msg --exec \"commitlint -e $GIT_PARAMS\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"coverage:report": "coveralls",
"precommit": "lint-staged && opt --in pre-commit --exec \"npm run verify\"",
"semantic-release": "semantic-release",
"setup": "npm i -g npmvet david depcheck types-checker commitizen semantic-release-cli all-contributors-cli",
"test": "jest --coverage",
"test:ci": "jest --ci --maxWorkers=4",
"test:coverage:ci": "jest --ci --maxWorkers=4 --coverage --testResultsProcessor=\"jest-junit\"",
"test:coverage:codecov": "codecov",
"test:watch": "jest --watch",
"ts:build": "tsc -b",
"ts:watch": "tsc -w",
"tslint": "tslint --config tslint.json \"src/**/*.ts\"",
"tslint:ci": "tslint --config tslint.json --format junit --out reports/tslint/tslint-results.xml \"src/**/*.ts\"",
"tslint:fix": "tslint --config tslint.json --fix \"src/**/*.ts\"",
"verify": "npm run verify:npmvet && npm run verify:david && npm run verify:audit && npm run verify:tscheck && npm run tslint && npm run test",
"verify:offline": "npm run verify:npmvet && npm run tslint && npm run test",
"verify:circleci": "circleci config validate -c .circleci/config.yml",
"verify:ci": "npm run verify:npmvet && npm run verify:audit && npm run test:ci",
"verify:check": "depcheck",
"verify:david": "david",
"verify:npmvet": "npmvet --renderer ci --strict",
"verify:audit": "npm audit fix",
"verify:tscheck": "types-checker"
},
"types": "lib/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}