-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.28 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
{
"name": "intern-a11y",
"version": "0.1.2",
"main": "index.js",
"types": "index.d.ts",
"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": {
"axe-core": "2.0.5"
},
"devDependencies": {
"@types/es6-promise": "0.0.31",
"intern": "~3.4.0",
"intern-dev": "https://github.com/theintern/intern-dev/releases/download/0.1.5/intern-dev-0.1.5.tgz",
"typescript": "~2.1.0"
},
"peerDependencies": {
"intern": "~3.4.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",
"clean": "intern-dev-clean",
"lint": "intern-dev-lint",
"release": "intern-dev-release",
"test": "intern-dev-build && NODE_PATH=_build intern-dev-test",
"watch": "intern-dev-watch"
},
"internDev": {
"resources": {
".": [
"tests/**/*.html"
]
},
"configs": [
"tsconfig.json",
"tests/tsconfig.json"
],
"publishDir": "_build/src"
}
}