-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.3 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
{
"name": "accessibility-scanner",
"version": "0.0.2",
"main": "./src/index.ts",
"bin": {
"accessibility-scanner": "./build/index.js"
},
"license": "MIT",
"scripts": {
"start": "nodemon",
"build": "tsc -p .",
"clean": "rimraf build",
"prebuild": "yarn clean",
"lint": "eslint ./src --ext .ts"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/clear": "^0.1.1",
"@types/figlet": "^1.5.1",
"@types/jsdom": "^16.2.11",
"@types/node": "^15.12.4",
"@types/puppeteer": "^5.4.3",
"@types/uuid": "^8.3.0",
"@types/xmldom": "^0.1.30",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"jest": "^27.0.5",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
},
"dependencies": {
"@axe-core/puppeteer": "^4.2.2",
"axe-core": "^4.2.3",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"cheerio": "^1.0.0-rc.10",
"clear": "^0.1.0",
"figlet": "^1.5.0",
"gradient-string": "^1.2.0",
"handlebars": "^4.7.7",
"jsdom": "^16.6.0",
"open": "^8.2.1",
"path": "^0.12.7",
"puppeteer": "^10.0.0",
"readline": "^1.3.0",
"uuid": "^8.3.2",
"xmldom": "^0.6.0"
}
}