-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.7 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
{
"title": "AcceDe Web - tablist",
"name": "@accede-web/tablist",
"version": "2.0.2",
"description": "WAI-ARIA tablist plugin based on AcceDe Web accessibility guidelines",
"main": "dist/tablist.js",
"module": "lib/index.js",
"scripts": {
"build": "rollup -c && cross-env NODE_ENV=production rollup -c",
"doc-lint": "documentation lint lib/*.js",
"doc-serve": "documentation serve lib/*.js",
"doc": "documentation build lib/*.js -f html -o docs",
"postversion": "git push && git push --tags",
"test": "tape test/*.js | tap-diff",
"version": "npm run build && npm run test && git add -A dist",
"watch:build": "watch 'npm run build' lib --interval=1",
"watch:test": "watch 'npm test' {dist,test} --interval=1"
},
"repository": {
"type": "git",
"url": "[email protected]:AcceDe-Web/tablist.git"
},
"keywords": [
"accessibility",
"tablist",
"tabs",
"accordion",
"javascript",
"vanilla",
"a11y"
],
"author": {
"name": "Switch",
"email": "[email protected]",
"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",
"cross-env": "^5.2.1",
"documentation": "^12.2.0",
"eslint": "^4.19.1",
"eslint-config-idiomatic": "^4.0.0",
"puppeteer": "^1.20.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^3.0.0",
"tape": "^4.13.2",
"watch": "^1.0.2"
}
}