-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
68 lines (68 loc) · 1.98 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
{
"name": "axobject-query",
"version": "4.1.0",
"description": "Programmatic access to information about the AXObject Model",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"flow": "flow",
"lint": "eslint --ext=js,mjs .",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"pretest": "npm run lint:fix && npm run flow",
"test": "npm run tests-only",
"build:tests": "npm run build && rimraf __tests-built__ && BABEL_ENV=test babel __tests__ --out-dir __tests-built__",
"tests-built": "nyc tape '__tests-built__/**/*.js'",
"tests-only": "nyc tape -r @babel/register '__tests__/**/*.js'",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/A11yance/axobject-query.git"
},
"keywords": [
"accessibility"
],
"author": "Jesse Beach <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/A11yance/axobject-query/issues"
},
"homepage": "https://github.com/A11yance/axobject-query#readme",
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-flow": "^7.24.7",
"@babel/register": "^7.24.6",
"babel-plugin-module-resolver": "^5.0.2",
"deep-equal-json": "^1.0.0",
"encoding": "^0.1.13",
"eslint": "^8.26.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.30.0",
"flow-bin": "^0.190.1",
"flow-typed": "^3.8.0",
"mock-property": "^1.1.0",
"nyc": "^10.3.2",
"object-inspect": "^1.13.2",
"object.values": "^1.2.0",
"rimraf": "^3.0.2",
"tape": "^5.9.0"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"ie 11"
],
"engines": {
"node": ">= 0.4"
}
}