-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
99 lines (99 loc) · 2.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "gaad-widget",
"version": "3.5.0",
"x-version-hat": "^3",
"description": "Display a banner-link to promote Global Accessibility Awareness Day (GAAD). Display the banner for a period before and after the day. Via unpkg CDN.",
"license": "MIT",
"browser": "dist/gaad-widget.js",
"unpkg": "dist/gaad-widget.js",
"main": "index.js",
"author": "Nick Freear {@nfreear}",
"repository": "https://github.com/nfreear/gaad-widget.git",
"x-repository-alt": "https://gitlab.com/nfreear/gaad-widget.git",
"bugs": "https://github.com/nfreear/gaad-widget/issues",
"homepage": "https://nick.freear.org.uk/2017/05/14/gaad-widget.html?utm_source=npm",
"dependencies": {
"datejs": "^1.0.0-rc3",
"icalendar": "^0.7.1",
"node-analytics-ga": "git+https://github.com/nfreear/node-analytics-ga.git#1.0.1"
},
"devDependencies": {
"browserify": "^16.5.2",
"exorcist": "^1.0.1",
"less": "^3.13.1",
"replace": "^1.2.1",
"semistandard": "^16.0.1",
"servor": "^4.0.2",
"uglify-js": "^3.15.4"
},
"x_devDependencies": {
"csslint": "^1.0.5",
"pa11y-ci": "^1.3.1"
},
"engines": {
"node": ">= 11"
},
"bin": {
"gaad": "bin/gaad.js"
},
"scripts": {
"build": "rm -f dist/* && bin/gaad.js && bin/_ver.js && npm run browserify && npm run uglify && npm run less",
"browserify": "browserify index.js --no-bf --debug | exorcist dist/gaad-widget.js.map > dist/gaad-widget.js",
"uglify": "uglifyjs dist/*-widget.js -mco dist/gaad-widget.min.js",
"uglify:OLD": "uglifyjs dist/*-widget.js --comments=/^[!]/ -mco dist/gaad-widget.min.js",
"less": "lessc style/style.less style/gaad-widget.css",
"start": "npx servor . 9001 --reload",
"start:OLD": "live-server --port=9001 -V",
"serve-ci": "npx servor . 9001",
"serve-ci:OLD": "live-server --port=9001 -V --no-browser --watch=DUMMY",
"ps": "pgrep -lf servor",
"kill-server": "pkill -f servor",
"pa11y": "pa11y --standard WCAG2AAA http://127.0.0.1:9001/embed/?gaadwidget=force&_ua=pa11y",
"pa11y-ci": "pa11y-ci --config .pa11yci.json",
"pa11y-help": "pa11y --version && pa11y --help",
"fix": "npx semistandard --fix",
"test": "npx semistandard"
},
"semistandard": {
"ignore": [
"dist/"
]
},
"keywords": [
"accessibility",
"a11y",
"pa11y",
"campaign",
"browser-widget",
"date",
"datejs",
"icalendar",
"event",
"day",
"international",
"GAAD"
],
"files": [
"index.js",
"dist/",
"data/gaad.en.ics",
"data/gaad.json",
"data/locales.json",
"src/",
"style/*logo*",
"style/*.css"
],
"x-locales": [
"en",
"es",
"fr",
"zh-cn"
],
"x-build-js-size": "13.8 kB",
"x-cdn": "https://unpkg.com/gaad-widget@^3/dist/gaad-widget.min.js",
"x-ticket": "[iet:8994834]",
"#": {
"Datejs-legacy": "https://github.com/datejs/Datejs#8164739566",
"universal-ga": "^1.1.0"
}
}