-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "computed-text",
"version": "0.0.0",
"description": "Return the computed text for a DOM node based on Accessible Name and Description: Computation and API Mappings",
"main": "build/",
"scripts": {
"build": "rimraf build && babel src --out-dir build",
"lint": "eslint .",
"test": "npm run lint && jest --coverage",
"tests-only": "jest"
},
"keywords": [
"accessibility",
"a11y"
],
"author": "Stephen Wyatt Bush",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-airbnb": "^2.2.3",
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"estraverse-fb": "^1.3.1",
"jest": "^19.0.2",
"regenerator-runtime": "^0.10.3",
"rimraf": "^2.6.1"
},
"jest": {
"coverageReporters": [
"lcov"
],
"coverageDirectory": "reports",
"roots": [
"<rootDir>/__tests__"
]
},
"dependencies": {
"aria-query": "^0.4.0"
}
}