source: frontend/node_modules/axobject-query/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 2.0 KB
Line 
1{
2 "name": "axobject-query",
3 "version": "4.1.0",
4 "description": "Programmatic access to information about the AXObject Model",
5 "main": "lib/index.js",
6 "files": [
7 "lib"
8 ],
9 "scripts": {
10 "build": "rimraf lib && babel src --out-dir lib",
11 "flow": "flow",
12 "lint": "eslint --ext=js,mjs .",
13 "lint:fix": "npm run lint -- --fix",
14 "prepublishOnly": "npm run build",
15 "pretest": "npm run lint:fix && npm run flow",
16 "test": "npm run tests-only",
17 "build:tests": "npm run build && rimraf __tests-built__ && BABEL_ENV=test babel __tests__ --out-dir __tests-built__",
18 "tests-built": "nyc tape '__tests-built__/**/*.js'",
19 "tests-only": "nyc tape -r @babel/register '__tests__/**/*.js'",
20 "prepack": "npm run build"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/A11yance/axobject-query.git"
25 },
26 "keywords": [
27 "accessibility"
28 ],
29 "author": "Jesse Beach <splendidnoise@gmail.com>",
30 "license": "Apache-2.0",
31 "bugs": {
32 "url": "https://github.com/A11yance/axobject-query/issues"
33 },
34 "homepage": "https://github.com/A11yance/axobject-query#readme",
35 "devDependencies": {
36 "@babel/cli": "^7.19.3",
37 "@babel/core": "^7.19.6",
38 "@babel/eslint-parser": "^7.19.1",
39 "@babel/plugin-transform-react-jsx": "^7.24.7",
40 "@babel/preset-env": "^7.19.4",
41 "@babel/preset-flow": "^7.18.6",
42 "@babel/register": "^7.24.6",
43 "babel-plugin-module-resolver": "^5.0.2",
44 "deep-equal-json": "^1.0.0",
45 "encoding": "^0.1.13",
46 "eslint": "^8.26.0",
47 "eslint-config-airbnb-base": "^15.0.0",
48 "eslint-plugin-flowtype": "^8.0.3",
49 "eslint-plugin-import": "^2.26.0",
50 "expect": "^29.2.1",
51 "flow-bin": "^0.190.1",
52 "flow-typed": "^3.8.0",
53 "mock-property": "^1.0.3",
54 "nyc": "^10.3.2",
55 "object-inspect": "^1.13.2",
56 "object.values": "^1.2.0",
57 "rimraf": "^3.0.2",
58 "tape": "^5.8.1"
59 },
60 "browserslist": [
61 ">0.2%",
62 "not dead",
63 "not op_mini all",
64 "ie 11"
65 ],
66 "engines": {
67 "node": ">= 0.4"
68 }
69}
Note: See TracBrowser for help on using the repository browser.