Skip to content

Commit 6a2c612

Browse files
Merge pull request #31 from heatherfriedman/master
readme
2 parents 5324860 + f5386f7 commit 6a2c612

File tree

4 files changed

+57
-8
lines changed

4 files changed

+57
-8
lines changed

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,37 @@
11
# Equa11y
2+
3+
### Welcome to equa11y, an easy to use command-line tool for accessiblity testing.
4+
5+
#### To install:
6+
7+
```
8+
npm i equa11y
9+
```
10+
11+
#### To start:
12+
13+
```
14+
npx equal
15+
```
16+
17+
### Contribue
18+
19+
##### Find us on [GitHub](https://github.com/oslabs-beta/equa11y)
20+
21+
### More Information
22+
23+
##### Find us on the [web](http://www.equa11y.com)
24+
25+
### Authors
26+
27+
##### Heather Friedman | [LinkedIn](https://www.linkedin.com/in/hgfriedman/) | [GitHub](https://github.com/heatherfriedman)
28+
29+
##### Tjolanda Sullivan | [LinkedIn](https://www.linkedin.com/in/willhack/) | [GitHub](https://github.com/willhack)
30+
31+
##### Taylor Riley Du | [LinkedIn](https://www.linkedin.com/in/taylorsriley/) | [GitHub](https://github.com/taylordu)
32+
33+
##### Will Hack | [LinkedIn]() | [GitHub]()
34+
35+
### License
36+
37+
##### This project is licensed under MIT License.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "equa11y",
3-
"version": "3.0.1",
3+
"version": "4.0.3",
44
"description": "",
55
"main": "index.ts",
66
"scripts": {
@@ -20,13 +20,24 @@
2020
"type": "git",
2121
"url": "git+https://github.com/oslabs-beta/Equa11y.git"
2222
},
23-
"keywords": [],
24-
"author": "",
25-
"license": "ISC",
23+
"keywords": [
24+
"accessibility",
25+
"cli",
26+
"testing",
27+
"test",
28+
"accessible",
29+
"wcag",
30+
"a11y",
31+
"axe-core",
32+
"TDD",
33+
"BDD"
34+
],
35+
"author": "Heather Friedman, Tjolanda Sullivan, Taylor Riley Du, Will Hack",
36+
"license": "MIT",
2637
"bugs": {
2738
"url": "https://github.com/oslabs-beta/Equa11y/issues"
2839
},
29-
"homepage": "https://github.com/oslabs-beta/Equa11y#readme",
40+
"homepage": "http://www.equa11y.com",
3041
"devDependencies": {
3142
"@types/axe-core": "^2.0.7",
3243
"@types/chalk": "^2.2.0",

src/index.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export const program: Program = {
2222
// Heading creation
2323
clear();
2424
CFonts.say('equa11y', {
25-
font: 'simple3d', space: false,
25+
font: 'simple3d',
26+
space: false,
2627
gradient: ['#ff3333', 'magenta', '#00bebe'],
2728
transitionGradient: true,
2829
});
@@ -50,7 +51,8 @@ export const program: Program = {
5051
// Reset the display
5152
clear();
5253
CFonts.say('equa11y', {
53-
font: 'simple3d', space: false,
54+
font: 'simple3d',
55+
space: false,
5456
gradient: ['#ff3333', 'magenta', '#00bebe'],
5557
transitionGradient: true,
5658
});

0 commit comments

Comments
 (0)