-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
80 lines (80 loc) · 1.7 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
{
"name": "@axe-core/puppeteer",
"version": "4.5.2",
"description": "Provides a chainable axe API for Puppeteer and automatically injects into all frames",
"repository": {
"type": "git",
"url": "https://github.com/dequelabs/axe-core-npm.git"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"/dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "mocha 'test/**/*.test.ts'",
"coverage": "nyc npm run test",
"prepublishOnly": "npm run build"
},
"author": "Adam Cutler",
"license": "MPL-2.0",
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/express": "^4.17.14",
"@types/mocha": "^10.0.0",
"@types/node": "^18.8.3",
"@types/sinon": "^10.0.13",
"@types/test-listen": "^1.1.0",
"axe-test-fixtures": "github:dequelabs/axe-test-fixtures#v1",
"chai": "^4.3.6",
"express": "^4.18.2",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"puppeteer": "^18.2.1",
"sinon": "^14.0.1",
"source-map-support": "^0.5.21",
"test-listen": "^1.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"axe-core": "^4.6.1"
},
"peerDependencies": {
"puppeteer": ">=1.10.0 <= 18"
},
"engines": {
"node": ">=6.4.0"
},
"nyc": {
"require": [
"ts-node/register"
],
"extension": [
".ts",
".tsx"
],
"include": [
"src"
],
"exclude": [
"**/*.d.ts",
"src/browser.ts"
],
"all": true,
"instrument": true,
"sourceMap": true,
"reporter": [
"text-summary",
"html"
],
"statements": 85,
"branches": 85,
"functions": 85,
"lines": 85
}
}