Skip to content

Commit 34920a2

Browse files
committed
1.0.1
Various refactoring, add GitHub link, add Renovate, alter authors, update dependencies.
1 parent 9c751ad commit 34920a2

File tree

6 files changed

+193
-41
lines changed

6 files changed

+193
-41
lines changed

.npmignore

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
# contents of .gitignore
2+
3+
# Logs
4+
logs
5+
*.log
6+
npm-debug.log*
7+
yarn-debug.log*
8+
yarn-error.log*
9+
10+
# Runtime data
11+
pids
12+
*.pid
13+
*.seed
14+
*.pid.lock
15+
16+
# Directory for instrumented libs generated by jscoverage/JSCover
17+
lib-cov
18+
19+
# Coverage directory used by tools like istanbul
20+
coverage
21+
22+
# nyc test coverage
23+
.nyc_output
24+
25+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
26+
.grunt
27+
28+
# Bower dependency directory (https://bower.io/)
29+
bower_components
30+
31+
# node-waf configuration
32+
.lock-wscript
33+
34+
# Compiled binary addons (https://nodejs.org/api/addons.html)
35+
build/Release
36+
37+
# Dependency directories
38+
node_modules/
39+
jspm_packages/
40+
41+
# TypeScript v1 declaration files
42+
typings/
43+
44+
# Optional npm cache directory
45+
.npm
46+
47+
# Optional eslint cache
48+
.eslintcache
49+
50+
# Optional REPL history
51+
.node_repl_history
52+
53+
# Output of 'npm pack'
54+
*.tgz
55+
56+
# Yarn Integrity file
57+
.yarn-integrity
58+
59+
# dotenv environment variables file
60+
.env
61+
62+
# parcel-bundler cache (https://parceljs.org/)
63+
.cache
64+
65+
# next.js build output
66+
.next
67+
68+
# nuxt.js build output
69+
.nuxt
70+
71+
# vuepress build output
72+
.vuepress/dist
73+
74+
# Serverless directories
75+
.serverless
76+
77+
# FuseBox cache
78+
.fusebox/
79+
80+
81+
# exclusive to .npmignore
82+
.travis.yml
83+
.vscode
84+
renovate.json

bin/output

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
 │  Defense, and Federal Civilian customers. │
1010
 │ │
1111
 │  Twitter: https://twitter.com/CACIIntl │
12+
 │  GitHub: https://github.com/CACI-International │
1213
 │  LinkedIn: https://linkedin.com/company/caci-international-inc │
1314
 │  Web: https://caci.com │
1415
 │ │

build.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ const data = {
1313
name: chalk.red(' CACI International Inc'),
1414
work: chalk.blue('An information solutions and services company\n in support of national security missions and\n government transformation for Intelligence,\n Defense, and Federal Civilian customers.'),
1515
twitter: chalk.gray('https://twitter.com/') + chalk.cyan('CACIIntl'),
16-
// github: chalk.gray('https://github.com/') + chalk.cyan('CACI-International'),
16+
github: chalk.gray('https://github.com/') + chalk.cyan('CACI-International'),
1717
linkedin: chalk.gray('https://linkedin.com/company/') + chalk.cyan('caci-international-inc'),
1818
web: chalk.cyan('https://caci.com'),
1919
hiring: chalk.red(' We\'re hiring!\n Find your innovation and imagination at https://careers.caci.com'),
2020
npx: chalk.white('npx') + ' ' + chalk.white('caci'),
2121
labelWork: chalk.gray.bold(' About:'),
2222
labelTwitter: chalk.gray.bold(' Twitter:'),
2323
labelnpm: chalk.gray.bold(' npm:'),
24-
// labelGitHub: chalk.gray.bold(' GitHub:'),
24+
labelGitHub: chalk.gray.bold(' GitHub:'),
2525
labelLinkedIn: chalk.gray.bold(' LinkedIn:'),
2626
labelWeb: chalk.gray.bold(' Web:'),
2727
labelCard: chalk.white(' Card:')
@@ -31,7 +31,7 @@ const newline = '\n'
3131
const heading = `${data.name}`
3232
const working = `${data.labelWork} ${data.work}`
3333
const twittering = `${data.labelTwitter} ${data.twitter}`
34-
// const githubing = `${data.labelGitHub} ${data.github}`
34+
const githubing = `${data.labelGitHub} ${data.github}`
3535
const linkedining = `${data.labelLinkedIn} ${data.linkedin}`
3636
const webing = `${data.labelWeb} ${data.web}`
3737
const hiring = `${data.hiring}`
@@ -41,7 +41,7 @@ const output = heading +
4141
newline + newline +
4242
working + newline + newline +
4343
twittering + newline +
44-
// githubing + newline +
44+
githubing + newline +
4545
linkedining + newline +
4646
webing + newline + newline +
4747
hiring + newline + newline +

package-lock.json

Lines changed: 87 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
{
22
"name": "caci",
33
"description": "A company npx card for CACI International Inc.",
4-
"author": "Eric Newport <[email protected]>",
5-
"version": "1.0.0",
4+
"author": "CACI International Inc (https://github.com/orgs/CACI-International/people)",
5+
"contributors": [
6+
{
7+
"name": "Contributors",
8+
"url": "https://github.com/CACI-International/CACI-Card/graphs/contributors"
9+
}
10+
],
11+
"version": "1.0.1",
612
"homepage": "https://caci.com",
713
"license": "MIT",
814
"main": "/bin/card.js",
@@ -21,7 +27,7 @@
2127
"devDependencies": {
2228
"boxen": "~4.1.0",
2329
"chalk": "~2.4.2",
24-
"standard": "~13.0.1"
30+
"standard": "~13.0.2"
2531
},
2632
"scripts": {
2733
"build": "node build.js",

renovate.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": [
3+
"config:base",
4+
":preserveSemverRanges",
5+
":ignoreUnstable",
6+
":respectLatest"
7+
]
8+
}

0 commit comments

Comments
 (0)