forked from A11yance/aria-query
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.84 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
{
"name": "aria-query",
"version": "4.2.2",
"description": "Programmatic access to the ARIA specification",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"flow": "flow",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint:fix && npm run flow",
"test": "npm run jest",
"test:ci": "npm run jest -- --ci --runInBand",
"jest": "jest --coverage __tests__/**/*",
"output_as_hack": "babel-node ./scripts/output_as_hack.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/A11yance/aria-query.git"
},
"keywords": [
"accessibility",
"ARIA"
],
"author": "Jesse Beach <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/A11yance/aria-query/issues"
},
"homepage": "https://github.com/A11yance/aria-query#readme",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/preset-flow": "^7.10.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"commander": "^7.0.0",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.21.2",
"expect": "^26.6.2",
"flow-bin": "^0.143.0",
"jest": "^26.6.3",
"minimist": "^1.2.5",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=6.0"
},
"dependencies": {
"@babel/runtime": "^7.10.2",
"@babel/runtime-corejs3": "^7.10.2"
},
"jest": {
"coverageReporters": [
"lcov"
],
"coverageDirectory": "reports",
"roots": [
"<rootDir>/__tests__"
]
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
]
}