-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.65 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
{
"name": "@krautzource/aria-tree-walker",
"version": "3.4.0",
"description": "A lightweight walker for labeled aria(-owns) trees",
"main": "dist/aria-tree-walker.cjs.js",
"module": "dist/aria-tree-walker.esm.js",
"types": "dist/aria-tree-walker.d.ts",
"files": [
"dist/*"
],
"scripts": {
"pretest": "npx rollup -c rollup.config.js",
"declarations": "npx tsc --declaration --emitDeclarationOnly --allowJs lib/navigator.js && cp lib/navigator.d.ts dist/aria-treewalker.d.ts",
"test": "ava",
"build": "npx rollup -c rollup.config.js",
"postbuild": "npm run declarations",
"predocs": "npm run build && cp ./dist/aria-tree-walker.esm.js ./docs/treewalker.js",
"docs": "node docs/source/generateDocs.js",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krautzource/aria-tree-walker.git"
},
"keywords": [
"accessibility",
"aria tree",
"aria owns",
"tree walker",
"diagrams",
"accessible diagram",
"accessible equation",
"speech-rule-engine",
"mathjax"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/krautzource/aria-tree-walker/issues"
},
"homepage": "https://github.com/krautzource/aria-tree-walker#readme",
"devDependencies": {
"@krautzource/sre-to-tree": "^2.0.2",
"ava": "^3.15.0",
"jsdom": "^18.0.1",
"mathjax-full": "^3.2.0",
"playwright": "^1.16.3",
"polka": "^0.5.2",
"rollup": "^2.59.0",
"rollup-plugin-terser": "^7.0.2",
"sirv": "^1.0.18",
"speech-rule-engine": "^4.0.0-beta.2",
"standard-version": "^9.3.2",
"typescript": "^4.4.4"
}
}