-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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
{
"name": "@a11ywatch/a11ywatch",
"version": "0.3.82",
"description": "A11yWatch lite sidecar for web accessibility automation.",
"main": "./server.js",
"author": "Jeff Mendez <jeff@a11ywatch.com>",
"keywords": [
"accessibility",
"accessibility-automation",
"testing",
"WCAG",
"sidecar",
"a11ywatch"
],
"scripts": {
"test": "npm run test:unit && npm run test:ci",
"test:unit": "jest --forceExit",
"test:ci": "jest --testPathPattern=ispec\\.js$ --forceExit --passWithNoTests",
"build": "tsc",
"dev": "ts-node-dev --transpile-only src/server.ts",
"dev:node19": "ts-node-dev --transpile-only --no-experimental-fetch src/server.ts",
"start": "NODE_ENV=production node ./server.js",
"start:prod": "NODE_ENV=production node ./dist/server.js",
"start:node19": "NODE_ENV=production node --no-experimental-fetch ./server.js",
"start:prod:node19": "NODE_ENV=production node --no-experimental-fetch ./dist/server.js",
"pub": "tsc && cp package.json dist && cp yarn.lock dist && cp README.md dist && cp LICENSE dist && cd dist && npm publish --access public"
},
"license": "MIT",
"dependencies": {
"@a11ywatch/client": "^0.0.5",
"@a11ywatch/core": "^0.8.17",
"@a11ywatch/crawler": "^0.9.3",
"@a11ywatch/mav": "^0.7.28",
"@a11ywatch/pagemind": "^0.9.62",
"@a11ywatch/protos": "^0.4.8"
},
"devDependencies": {
"@swc/core": "^1.3.58",
"@swc/jest": "^0.2.26",
"@types/node": "^18.15.10",
"jest": "^29.5.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a11ywatch/sidecar.git"
},
"jest": {
"moduleNameMapper": {
"^@app/(.*)$": "<rootDir>/src/$1"
},
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"verbose": true,
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}