-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.22 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
{
"name": "web-reader",
"version": "0.1.0",
"description": "A screen reader for everyone, everywhere",
"main": "src/main.js",
"scripts": {},
"repository": {
"type": "git",
"url": "https://github.com/digital-detox/web-reader.git"
},
"keywords": [
"screen-reader",
"accessibility",
"a11y",
"javascript",
"library"
],
"author": {
"name": "Digital Detox",
"email": "[email protected]",
"url": "https://digital-detox.co.uk"
},
"contributors": [
{
"name": "Aurelio De Rosa",
"email": "[email protected]",
"url": "https://www.audero.it"
}
],
"license": "CC-BY-NC-ND-4.0",
"bugs": "https://github.com/digital-detox/web-reader/issues",
"homepage": "https://web-reader.digital-detox.co.uk/",
"devDependencies": {
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-plugin-transform-remove-console": "^6.5.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-istanbul": "^1.0.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-esdoc": "^0.2.0",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"isparta": "^4.0.0",
"istanbul": "^0.4.2",
"jshint": "^2.9.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.2",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "git://github.com/douglasduteil/karma-coverage#next",
"karma-coveralls": "^1.1.2",
"karma-fixture": "^0.2.5",
"karma-html2js-preprocessor": "^0.1.0",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-sinon-chai": "^1.2.0",
"lazypipe": "^1.0.1",
"mocha": "^2.4.5",
"run-sequence": "^1.2.0",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"whatwg-fetch": "^1.0.0"
},
"dependencies": {
"damerau-levenshtein": "git://github.com/cbaatz/damerau-levenshtein.git"
}
}