You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.7 KiB
71 lines
1.7 KiB
{ |
|
"name": "aria-query", |
|
"version": "5.0.0", |
|
"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 <splendidnoise@gmail.com>", |
|
"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": "^27.0.2", |
|
"commander": "^8.0.0", |
|
"eslint": "^7.16.0", |
|
"eslint-config-airbnb-base": "^14.2.1", |
|
"eslint-plugin-flowtype": "^6.1.0", |
|
"eslint-plugin-import": "^2.21.2", |
|
"expect": "^27.0.2", |
|
"flow-bin": "^0.161.0", |
|
"jest": "^27.0.4", |
|
"minimist": "^1.2.5", |
|
"rimraf": "^3.0.2" |
|
}, |
|
"engines": { |
|
"node": ">=6.0" |
|
}, |
|
"jest": { |
|
"coverageReporters": [ |
|
"lcov" |
|
], |
|
"coverageDirectory": "reports", |
|
"roots": [ |
|
"<rootDir>/__tests__" |
|
] |
|
}, |
|
"browserslist": [ |
|
">0.2%", |
|
"not dead", |
|
"not op_mini all", |
|
"ie 11" |
|
] |
|
}
|
|
|