-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "text-zoom-event",
"version": "1.6.0",
"description": "A library that will detect when a user zooms text in their browser. This is a common use case for people who are visually impaired.",
"main": "dist/textZoomEvent-es4.js",
"scripts": {
"test": "echo \"No tests defined\" && exit 0",
"build": "npx babel js/textZoomEvent.js --out-file dist/textZoomEvent-es4.js",
"build:all": "npm run build; npm run build:prod; npm run build:module",
"build:prod": "BABEL_ENV=production npx babel js/textZoomEvent.js --out-file dist/textZoomEvent-es4-min.js",
"build:module": "(cat js/textZoomEvent.js; echo; echo 'export default textZoomEvent;') > dist/textZoomEvent.module.js",
"clean": "rimraf dist/*",
"update:major": "V=`npm version major`; git push origin $V; npm publish",
"update:minor": "V=`npm version minor`; git push origin $V; npm publish",
"update:patch": "V=`npm version patch`; git push origin $V; npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoltan-dulac/text-zoom-resize.git"
},
"keywords": [
"a11y",
"accessibility",
"textzoom",
"text",
"zoom",
"zoom",
"text",
"text",
"resize",
"resize",
"text",
"WCAG",
"WCAG",
"AA",
"1.4.4",
"WCAG",
"AA",
"WCAG",
"1.4.4",
"visually",
"impaired"
],
"author": "Zoltan Hawryluk",
"license": "SEE LICENSE IN js/textZoomEvent.js",
"bugs": {
"url": "https://github.com/zoltan-dulac/text-zoom-resize/issues"
},
"homepage": "https://github.com/zoltan-dulac/text-zoom-resize#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.16.11",
"babel-minify": "^0.2.0",
"babel-preset-minify": "^0.5.0"
},
"dependencies": {
"braces": "^2.3.1",
"micromatch": "^4.0.4"
}
}