forked from xability/maidr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "maidr",
"version": "1.2.0",
"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": {
"prepare": "husky install",
"build": "gulp",
"test": "jest",
"lint": "eslint src/**/*.{js,jsx}",
"format": "prettier --write .",
"docs": "jsdoc -c jsdoc.json",
"commitlint": "commitlint",
"semantic-release": "semantic-release"
},
"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": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"commitlint": "18.4.3",
"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",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc": "^4.0.2",
"prettier": "^2.8.8",
"semantic-release": "^22.0.12"
},
"dependencies": {
"mi": "^1.0.0",
"minami": "^1.2.3",
"taffydb": "^2.7.3"
},
"jest": {
"testEnvironment": "jsdom"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
},
"@semantic-release/github"
]
}
}