forked from xability/maidr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.75 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
{
"name": "maidr",
"version": "1.0.3",
"description": "maidr: Multimodal Access and Interactive Data Representation. maidr is a system for non-visual access and control of statistical charts. It aims to provide an inclusive experience for users with visual impairments by offering multiple modes of interaction: braille, text, and sonification. This comprehensive approach enhances the accessibility of data visualization and encourages a multi-model exploration on visualization. Check out the current build: [MAIDR Demo](https://uiuc-ischool-accessible-computing-lab.github.io/maidr/user_study_pilot/intro.html).",
"main": "dist/maidr.js",
"scripts": {
"build": "gulp",
"test": "jest",
"lint": "eslint src/**/*.{js,jsx}",
"format": "prettier --write .",
"docs": "jsdoc -c jsdoc.json"
},
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/uiuc-ischool-accessible-computing-lab/maidr.git"
},
"keywords": [],
"author": "JooYoung Seo",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/uiuc-ischool-accessible-computing-lab/maidr/issues"
},
"homepage": "https://github.com/uiuc-ischool-accessible-computing-lab/maidr#readme",
"devDependencies": {
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-concat-css": "^3.1.0",
"gulp-rename": "^2.0.0",
"gulp-terser": "^2.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.2",
"prettier": "^2.8.8"
},
"dependencies": {
"mi": "^1.0.0",
"minami": "^1.2.3",
"taffydb": "^2.7.3"
},
"jest": {
"testEnvironment": "jsdom"
}
}