-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
73 lines (73 loc) · 2.44 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
{
"name": "accessibility-checker",
"version": "3.0.0",
"description": "Accessibility Checker for Node",
"license": "SEE LICENSE IN LICENSE from the 'equal-access' repository",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"test": "mocha -R dot test/mocha/**/*.test.js test/a11y-rule-test-able/*.test.js",
"build": "npm run build:common && npm run build:ts && cd ../accessibility-checker-engine && npm install && npm run build && npm run build-debug && npm run build-node && npm run build-node-debug",
"build:ts": "npx tsc",
"build:report": "(cd ../report-react && npm run build && cd ../accessibility-checker && shx cp ../report-react/build/genReport.tsx ./src-ts/lib/common/report/genReport.ts)",
"build:common": "shx rm -rf ./src-ts/lib/common && shx cp -R ../common/module/src ./src-ts/lib/common && npm run build:report",
"package:zip": "shx rm -rf package && gulp --gulpfile gulp/gulpfile.js && shx chmod u+x package/bin/*.js && cd package && npm pack",
"package:npm": "shx rm -rf package && gulp --gulpfile gulp/gulpfile.js && shx chmod u+x package/bin/*.js"
},
"repository": {
"type": "git",
"url": "[email protected]/IBMa/equal-access/accessibility-checker"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"axios": "^1.4.0",
"chromedriver": "*",
"deep-diff": "^1.0.2",
"exceljs": "^4.3.0",
"js-yaml": "^4.1.0",
"puppeteer": "^13.0.0"
},
"devDependencies": {
"@playwright/test": "^1.21.1",
"@types/node": "^18.15.3",
"adm-zip": "^0.5.9",
"chai": "^4.3.4",
"eslint": "^8.4.1",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"gulp-download": "0.0.1",
"gulp-flatten": "^0.4.0",
"gulp-git": "^2.10.1",
"gulp-gzip": "^1.4.2",
"gulp-insert": "^0.5.0",
"gulp-jsonminify": "^1.1.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.1.3",
"gulp-sftp": "^0.1.5",
"gulp-ssh": "^0.7.0",
"gulp-tar": "^3.1.0",
"gulp-terser": "^2.1.0",
"gulp-unzip": "^1.1.0",
"gulp-util": "^3.0.7",
"gulp-zip": "^5.1.0",
"jasmine": "^3.10.0",
"mocha": "^9.1.3",
"natives": "1.1.6",
"playwright": "^1.21.1",
"rimraf": "^3.0.2",
"selenium-webdriver": "4.3.0",
"serve-index": "^1.9.1",
"shx": "^0.3.4",
"tmp": "0.2.1",
"typescript": "^5.1.3",
"url-exists": "^1.0.3",
"ws": "^8.3.0",
"xml2js": "^0.4.23"
},
"publishConfig": {
"access": "public"
}
}