-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "@modus/gimbal-plugin-axe",
"version": "1.2.6",
"description": "Plugin to add axe audits to Gimbal",
"author": "Mitchell Simoens <[email protected]>",
"homepage": "https://github.com/ModusCreateOrg/gimbal#readme",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "ttsc -p .",
"build:check": "ttsc --noEmit -p .",
"build:watch": "ttsc --watch -p .",
"link": "npm link",
"lint": "eslint 'src/**/*.ts'",
"prepublish": "yarn build",
"test": "jest --coverage",
"test:coveralls": "cat ./coverage/lcov.info | coveralls",
"test:nocov": "jest"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"gimbal",
"axe",
"puppeteer",
"audit",
"typescript",
"javascript",
"webdevelopment",
"ci"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ModusCreateOrg/gimbal.git"
},
"bugs": {
"url": "https://github.com/ModusCreateOrg/gimbal/issues"
},
"dependencies": {
"axe-puppeteer": "1.0.0",
"deepmerge": "4.0.0"
}
}