-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
{
"name": "@theintern/a11y",
"version": "0.2.1-pre",
"description": "Intern-a11y. An accessibility testing helper for Intern.",
"repository": {
"type": "git",
"url": "https://github.com/theintern/intern-a11y.git"
},
"license": "BSD-3-Clause",
"dependencies": {
"@types/mkdirp": "~0.5.1",
"axe-core": "~2.5.0",
"mkdirp": "~0.5.1"
},
"devDependencies": {
"@theintern/dev": "~0.6.2",
"intern": "~4.1.2"
},
"peerDependencies": {
"intern": "~4.1.0"
},
"bugs": "https://github.com/theintern/intern-a11y/issues",
"keywords": [
"javascript",
"test",
"functional",
"tenon",
"aXe"
],
"homepage": "http://github.com/theintern/intern-a11y",
"scripts": {
"build": "intern-dev-clean && intern-dev-build && intern-dev-api",
"clean": "intern-dev-clean",
"lint": "intern-dev-lint",
"release": "intern-dev-release",
"test": "NODE_PATH=_build intern",
"watch": "intern-dev-watch"
},
"internDev": {
"resources": {
"_build": [
"tests/**/*.{html,json}"
]
},
"configs": [
"tsconfig.json",
"tests/tsconfig.json"
],
"publishDir": "_build/src"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4,
"useTabs": true
}
}