-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 KB
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
{
"title": "AcceDe Web - overlay",
"name": "@accede-web/overlay",
"version": "1.1.0",
"description": "WAI-ARIA overlay plugin based on AcceDe Web instructions",
"main": "dist/overlay.js",
"module": "lib/index.js",
"scripts": {
"test": "tape test/*.js | tap-diff",
"build": "rollup -c && cross-env NODE_ENV=production rollup -c",
"doc": "documentation build lib/index.js -f html -o docs --shallow",
"doc-lint": "documentation lint lib/index.js",
"doc-serve": "documentation serve lib/index.js",
"version": "npm run build && npm run test && git add -A dist",
"postversion": "git push && git push --tags",
"server": "browser-sync start -s '.' --ss 'dist' -f './test' './dist' --no-open --no-ui --no-ghost-mode --no-notify",
"watch:build": "watch 'npm run build' lib --interval=1",
"watch:test": "watch 'npm test' {dist,test} --interval=1"
},
"repository": {
"type": "git",
"url": "git@github.com:AcceDe-Web/overlay.git"
},
"keywords": [
"accessibility",
"modal",
"popin",
"dialog",
"layer",
"overlay",
"javascript",
"vanilla"
],
"author": {
"name": "Switch",
"email": "bonjour@switch.paris",
"url": "http://switch.paris"
},
"license": "ISC",
"browserslist": [
"> 1%",
"last 2 versions",
"IE 10"
],
"homepage": "http://a11y.switch.paris/",
"devDependencies": {
"@detools/tap-diff": "^0.2.2",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"browser-sync": "^2.26.7",
"cross-env": "^5.2.1",
"documentation": "^12.2.0",
"eslint": "^4.19.1",
"eslint-config-idiomatic": "^4.0.0",
"puppeteer": "^19.5.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^2.0.1",
"tape": "^5.6.1",
"watch": "^1.0.2"
}
}