-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
81 lines (81 loc) · 1.98 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
{
"name": "equa11y",
"version": "4.2.1",
"description": "",
"main": "index.ts",
"scripts": {
"test": "jest",
"tsc": "tsc",
"dev": "ts-node-dev --respawn ./src/index.ts",
"prod": "tsc && node ./build/server/server.js",
"lint": "eslint src/** --color"
},
"bin": {
"equa11y": "./build/index.js"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oslabs-beta/Equa11y.git"
},
"keywords": [
"accessibility",
"cli",
"testing",
"test",
"accessible",
"wcag",
"a11y",
"axe-core",
"TDD",
"BDD"
],
"author": "Heather Friedman, Tjolanda Sullivan, Taylor Riley Du, Will Hack",
"license": "MIT",
"bugs": {
"url": "https://github.com/oslabs-beta/Equa11y/issues"
},
"homepage": "http://www.equa11y.com",
"devDependencies": {
"@types/axe-core": "^2.0.7",
"@types/chalk": "^2.2.0",
"@types/clear": "^0.1.0",
"@types/cli-color": "^2.0.0",
"@types/clui": "^0.3.0",
"@types/express": "^4.17.8",
"@types/figlet": "^1.2.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@types/node": "^14.6.4",
"@types/puppeteer": "^3.0.1",
"@types/strip-color": "^0.1.0",
"@types/through": "0.0.30",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"ts-jest": "^26.4.0",
"ts-node-dev": "^1.0.0-pre.62",
"typescript": "^4.0.2",
"typescript-eslint": "0.0.1-alpha.0"
},
"dependencies": {
"axe-core": "^4.0.1",
"axe-puppeteer": "^1.1.0",
"cfonts": "^2.8.6",
"chalk": "^4.1.0",
"clear": "^0.1.0",
"clui": "^0.3.6",
"inquirer": "^7.3.3",
"open": "^7.2.1",
"puppeteer": "^5.2.1",
"strip-color": "^0.1.0"
}
}